This file contains hidden or 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 cassandra.cluster import Cluster | |
from cassandra.policies import RetryPolicy | |
import sys | |
import argparse | |
import datetime | |
from itertools import cycle, product | |
import csv | |
import time | |
class AlwaysRetryPolicy(RetryPolicy): |
NewerOlder