Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-38364: [Python] Initialize S3 on first use #38375

Merged
merged 4 commits into from
Oct 24, 2023

Commits on Oct 20, 2023

  1. Initialize S3 on first use

    Initializing S3 on import may cause undesired consequences for users who
    do not use S3:
    - Longer import times;
    - Consumption of unnecessary resources, e.g., AWS event loop thread(s);
    - Potential exposure to bugs in S3 package dependencies.
    
    Therefore, a more appropriate way to handle S3 initialization seems to
    be to move it to its first use.
    pentschev committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    220745f View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Configuration menu
    Copy the full SHA
    50aa5ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58097e9 View commit details
    Browse the repository at this point in the history
  3. Add comment

    pitrou authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    a164f25 View commit details
    Browse the repository at this point in the history