mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
38 lines
983 B
Python
38 lines
983 B
Python
|
import boto3
|
||
|
import json
|
||
|
import sys
|
||
|
from multiprocessing import Pool
|
||
|
|
||
|
file = '/path/to/file_with_records_as_jsonl'
|
||
|
queue_url = 'your-queue-url'
|
||
|
region = 'your-region'
|
||
|
processor_count = int(sys.argv[1])
|
||
|
|
||
|
|
||
|
def send_message(data):
|
||
|
sqs_client = boto3.client('sqs', region_name=region)
|
||
|
sqs_client.send_message_batch(
|
||
|
QueueUrl=queue_url,
|
||
|
Entries=[{'MessageBody': json.dumps(x)} for x in data]
|
||
|
)
|
||
|
|
||
|
|
||
|
def main(file):
|
||
|
temp = []
|
||
|
total_records_sent = 0
|
||
|
|
||
|
with open(file) as f:
|
||
|
data = [json.loads(line) for line in f]
|
||
|
batched_data = []
|
||
|
for i in range(0, len(data), int(len(data)/processor_count)):
|
||
|
batched_data.append(data[i:i + int(len(data)/processor_count)])
|
||
|
for _ in Pool(processes=processor_count).imap_unordered(send_message,
|
||
|
batched_data):
|
||
|
temp.append(_)
|
||
|
for x in temp:
|
||
|
total_records_sent += x
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main(file)
|