This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: | |
# Randomly selects a photo and caption from dbareactions.com and posts it to your chat | |
# | |
# Dependencies: | |
# string": "~1.8.1" | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from multiprocessing import Pool | |
import happybase, os, random, base64, time, sys | |
# Total number of rows to be inserted | |
TOTAL_PUTS = 100000000 | |
# Number of inserts that are in one batch operation | |
BATCH_PUTS = 10000 | |
# Output is displayed after how many iterations | |
OUTPUT_ITERATIONS = 50000 | |
# Number of simultaneous threads (actually processes) |