Can a single Glue streaming job handle multiple kinesis sources

0

In a Glue streaming job, is it possible read from Multiple Kinesis sources in my spark script?

something like:

streams = ["streamA", "streamB"]

for stream in streams:
    process_stream(stream)

def process_stream(stream_name):
    glueContext.forEachBatch(
            frame=dataframe,
            batch_function=process_batch_with_stream_name,
            options={
                "windowSize": "60 seconds",
                "checkpointLocation": args["TempDir"] + f"/job_{JOB_NAME}/" 
            }
YK
gefragt vor 5 Monaten622 Aufrufe
3 Antworten
0
Akzeptierte Antwort

Hello,

To read multiple kinesis sources you can create a DataFrame for each stream and use a union function before passing it to forEachBatch. If you want to process the data separately on the same job, separate threads should be coordinated which is complex to implement and hence it is not recommended.

You can also refer to the following documentation for more guidance on Streaming ETL jobs in AWS Glue: https://docs.aws.amazon.com/glue/latest/dg/add-job-streaming.html

If you need specific guidance for your use-case, please open a support case with AWS using the following link: https://console.aws.amazon.com/support/home#/case/create

AWS
SUPPORT-TECHNIKER
beantwortet vor 5 Monaten
0

Thanks! I ended up using separate thread for each stream. Why is it not recommended?

YK
beantwortet vor 5 Monaten
  • They could have interference (e.g. fighting for driver memory) and in general much harder to monitor and operate (e.g., what happens if one of them fails, do you restart the whole job?)

0

Yes, you just need to create a DataFrame for each stream and union() them before passing it to forEachBatch.
Notice that assumes your function can process data coming from either of them.
If you mean processing them in separately on the same job, that requires calling forEachBatch on separate threads and coordinating them, it's much more complex to operate and not recommended.

profile pictureAWS
EXPERTE
beantwortet vor 5 Monaten
profile picture
EXPERTE
überprüft vor 5 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen