AWS lambda function python/pysparklCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonUsing global variables in a functionHow to make a chain of function decorators?Does Python have a string 'contains' substring method?

Upside-Down Pyramid Addition...REVERSED!

Catholic vs Protestant Support for Nazism in Germany

Should one double the thirds or the fifth in chords?

Missed the connecting flight, separate tickets on same airline - who is responsible?

What word means "to make something obsolete"?

How can I close a gap between my fence and my neighbor's that's on his side of the property line?

Alias to source .bashrc after it's been edited?

Is it cheaper to drop cargo than to land it?

Why is `abs()` implemented differently?

When and why did journal article titles become descriptive, rather than creatively allusive?

Can fracking help reduce CO2?

Manager is threatning to grade me poorly if I don't complete the project

CRT Oscilloscope - part of the plot is missing

How to give very negative feedback gracefully?

Why is B♯ higher than C♭ in 31-ET?

Identifying a transmission to myself

Comment rendre "naysayers" ?

Moving the subject of the sentence into a dangling participle

What happens to matryoshka Mordenkainen's Magnificent Mansions?

Which industry am I working in? Software development or financial services?

Would "lab meat" be able to feed a much larger global population

How can I support myself financially as a 17 year old with a loan?

How can I get a job without pushing my family's income into a higher tax bracket?

If Earth is tilted, why is Polaris always above the same spot?



AWS lambda function python/pysparkl


Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How to get the current time in PythonUsing global variables in a functionHow to make a chain of function decorators?Does Python have a string 'contains' substring method?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















I have a lambda function that triggers when an object hits specific folder in s3 bucket and moves to different folder in the same s3 bucket.



But i am trying to modify the lambda function where the lambda triggers only if we receive all the mandatory files.(The existing lambda function i am having doesn't wait for other files ,triggers and moves whenever new file is uploaded).



Could anybody help me out with this .










share|improve this question






























    -1















    I have a lambda function that triggers when an object hits specific folder in s3 bucket and moves to different folder in the same s3 bucket.



    But i am trying to modify the lambda function where the lambda triggers only if we receive all the mandatory files.(The existing lambda function i am having doesn't wait for other files ,triggers and moves whenever new file is uploaded).



    Could anybody help me out with this .










    share|improve this question


























      -1












      -1








      -1








      I have a lambda function that triggers when an object hits specific folder in s3 bucket and moves to different folder in the same s3 bucket.



      But i am trying to modify the lambda function where the lambda triggers only if we receive all the mandatory files.(The existing lambda function i am having doesn't wait for other files ,triggers and moves whenever new file is uploaded).



      Could anybody help me out with this .










      share|improve this question
















      I have a lambda function that triggers when an object hits specific folder in s3 bucket and moves to different folder in the same s3 bucket.



      But i am trying to modify the lambda function where the lambda triggers only if we receive all the mandatory files.(The existing lambda function i am having doesn't wait for other files ,triggers and moves whenever new file is uploaded).



      Could anybody help me out with this .







      python amazon-web-services amazon-s3 pyspark






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 22:41







      user8545255

















      asked Mar 22 at 21:43









      user8545255user8545255

      1618




      1618






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Triggers do not function in this manner. S3 will trigger the lambda function for each file that is uploaded that matches the trigger definition as it is evaluated for every upload.



          If it is a timing issue, you can use stop functions. S3 would trigger lambda. Lambda would trigger a step function that can wait X number of seconds/minutes/days. Then step functions will fire another trigger to do the operations on the S3 bucket.
          https://aws.amazon.com/getting-started/tutorials/create-a-serverless-workflow-step-functions-lambda/?&trk=el_a131L000005unTnQAI&trkCampaign=pac_q2-04-2019_stepfunctions_tutorial_offering_link_2&sc_channel=el&sc_campaign=pac_q2-04-2019_stepfunctions_tutorial&sc_outcome=PaaS_Digital_Marketing&sc_geo=mult






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308179%2faws-lambda-function-python-pysparkl%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Triggers do not function in this manner. S3 will trigger the lambda function for each file that is uploaded that matches the trigger definition as it is evaluated for every upload.



            If it is a timing issue, you can use stop functions. S3 would trigger lambda. Lambda would trigger a step function that can wait X number of seconds/minutes/days. Then step functions will fire another trigger to do the operations on the S3 bucket.
            https://aws.amazon.com/getting-started/tutorials/create-a-serverless-workflow-step-functions-lambda/?&trk=el_a131L000005unTnQAI&trkCampaign=pac_q2-04-2019_stepfunctions_tutorial_offering_link_2&sc_channel=el&sc_campaign=pac_q2-04-2019_stepfunctions_tutorial&sc_outcome=PaaS_Digital_Marketing&sc_geo=mult






            share|improve this answer



























              0














              Triggers do not function in this manner. S3 will trigger the lambda function for each file that is uploaded that matches the trigger definition as it is evaluated for every upload.



              If it is a timing issue, you can use stop functions. S3 would trigger lambda. Lambda would trigger a step function that can wait X number of seconds/minutes/days. Then step functions will fire another trigger to do the operations on the S3 bucket.
              https://aws.amazon.com/getting-started/tutorials/create-a-serverless-workflow-step-functions-lambda/?&trk=el_a131L000005unTnQAI&trkCampaign=pac_q2-04-2019_stepfunctions_tutorial_offering_link_2&sc_channel=el&sc_campaign=pac_q2-04-2019_stepfunctions_tutorial&sc_outcome=PaaS_Digital_Marketing&sc_geo=mult






              share|improve this answer

























                0












                0








                0







                Triggers do not function in this manner. S3 will trigger the lambda function for each file that is uploaded that matches the trigger definition as it is evaluated for every upload.



                If it is a timing issue, you can use stop functions. S3 would trigger lambda. Lambda would trigger a step function that can wait X number of seconds/minutes/days. Then step functions will fire another trigger to do the operations on the S3 bucket.
                https://aws.amazon.com/getting-started/tutorials/create-a-serverless-workflow-step-functions-lambda/?&trk=el_a131L000005unTnQAI&trkCampaign=pac_q2-04-2019_stepfunctions_tutorial_offering_link_2&sc_channel=el&sc_campaign=pac_q2-04-2019_stepfunctions_tutorial&sc_outcome=PaaS_Digital_Marketing&sc_geo=mult






                share|improve this answer













                Triggers do not function in this manner. S3 will trigger the lambda function for each file that is uploaded that matches the trigger definition as it is evaluated for every upload.



                If it is a timing issue, you can use stop functions. S3 would trigger lambda. Lambda would trigger a step function that can wait X number of seconds/minutes/days. Then step functions will fire another trigger to do the operations on the S3 bucket.
                https://aws.amazon.com/getting-started/tutorials/create-a-serverless-workflow-step-functions-lambda/?&trk=el_a131L000005unTnQAI&trkCampaign=pac_q2-04-2019_stepfunctions_tutorial_offering_link_2&sc_channel=el&sc_campaign=pac_q2-04-2019_stepfunctions_tutorial&sc_outcome=PaaS_Digital_Marketing&sc_geo=mult







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Apr 21 at 9:21









                JosephJoseph

                862




                862





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308179%2faws-lambda-function-python-pysparkl%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript