aws-sdk-glue 1.115.0 → 1.116.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8506a0e874536293fa1387c2f26fcc33d0a539a3e858dc1dabce855f4672af1e
4
- data.tar.gz: ef2266db2d31278105112e1fe029b659f1b7b25d607f326bf38d983e9c1edff0
3
+ metadata.gz: 22ae3a29808763e1c0ad4aa59d4b82f00a98b28da11f0656f4f13153c1cef1dd
4
+ data.tar.gz: df8f02b374dc58c885938495b2daf25af52b6e8344c148863d7737d294d69508
5
5
  SHA512:
6
- metadata.gz: 9f1a582999e37bc3e88ae7253f53ef5c8f264c259ec7a7517b6db3aa80c6230bbf574fddfec239c1876de265ded9ddeb412cad134241422013d82dac17da8709
7
- data.tar.gz: 1fec521ed8f4935d214b00ea475fb495bb1962356f9dc34af354d348a020b3b8183997dbba462257f7138aa8f2937ed5f9f17c78de27deaab9013f0296b00ffb
6
+ metadata.gz: 7859663bf7442689f956b103a37dce88587523970002846caef5680104229c04c3f607eb982711ffbb5701e32752f5b82668502d7eba8e395f059bfbe681d267
7
+ data.tar.gz: 933ba2ae90850670170658d046d729e12129a98e6a64d7eeaf8a4788cce91a6ccf3a3f02d0fa658810741f1fe5ca6b7e0917dfe48b616fd5fb561590036a3ed8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2022-07-19)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Glue Job Timeout and Autoscaling
8
+
4
9
  1.115.0 (2022-07-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -12543,8 +12543,10 @@ module Aws::Glue
12543
12543
  # @option params [Integer] :timeout
12544
12544
  # The `JobRun` timeout in minutes. This is the maximum time that a job
12545
12545
  # run can consume resources before it is terminated and enters `TIMEOUT`
12546
- # status. The default is 2,880 minutes (48 hours). This overrides the
12547
- # timeout value set in the parent job.
12546
+ # status. This value overrides the timeout value set in the parent job.
12547
+ #
12548
+ # Streaming jobs do not have a timeout. The default for non-streaming
12549
+ # jobs is 2,880 minutes (48 hours).
12548
12550
  #
12549
12551
  # @option params [Float] :max_capacity
12550
12552
  # The number of Glue data processing units (DPUs) that can be allocated
@@ -15092,7 +15094,7 @@ module Aws::Glue
15092
15094
  params: params,
15093
15095
  config: config)
15094
15096
  context[:gem_name] = 'aws-sdk-glue'
15095
- context[:gem_version] = '1.115.0'
15097
+ context[:gem_version] = '1.116.0'
15096
15098
  Seahorse::Client::Request.new(handlers, context)
15097
15099
  end
15098
15100
 
@@ -14998,8 +14998,11 @@ module Aws::Glue
14998
14998
  # @!attribute [rw] timeout
14999
14999
  # The `JobRun` timeout in minutes. This is the maximum time that a job
15000
15000
  # run can consume resources before it is terminated and enters
15001
- # `TIMEOUT` status. The default is 2,880 minutes (48 hours). This
15002
- # overrides the timeout value set in the parent job.
15001
+ # `TIMEOUT` status. This value overrides the timeout value set in the
15002
+ # parent job.
15003
+ #
15004
+ # Streaming jobs do not have a timeout. The default for non-streaming
15005
+ # jobs is 2,880 minutes (48 hours).
15003
15006
  # @return [Integer]
15004
15007
  #
15005
15008
  # @!attribute [rw] max_capacity
@@ -15090,10 +15093,10 @@ module Aws::Glue
15090
15093
  # @return [String]
15091
15094
  #
15092
15095
  # @!attribute [rw] dpu_seconds
15093
- # This field populates only when an Auto Scaling job run completes,
15094
- # and represents the total time each executor ran during the lifecycle
15095
- # of a job run in seconds, multiplied by a DPU factor (1 for `G.1X`
15096
- # and 2 for `G.2X` workers). This value may be different than the
15096
+ # This field populates only for Auto Scaling job runs, and represents
15097
+ # the total time each executor ran during the lifecycle of a job run
15098
+ # in seconds, multiplied by a DPU factor (1 for `G.1X`, 2 for `G.2X`,
15099
+ # or 0.25 for `G.025X` workers). This value may be different than the
15097
15100
  # `executionEngineRuntime` * `MaxCapacity` as in the case of Auto
15098
15101
  # Scaling jobs, as the number of executors running at a given time may
15099
15102
  # be less than the `MaxCapacity`. Therefore, it is possible that the
@@ -22061,8 +22064,11 @@ module Aws::Glue
22061
22064
  # @!attribute [rw] timeout
22062
22065
  # The `JobRun` timeout in minutes. This is the maximum time that a job
22063
22066
  # run can consume resources before it is terminated and enters
22064
- # `TIMEOUT` status. The default is 2,880 minutes (48 hours). This
22065
- # overrides the timeout value set in the parent job.
22067
+ # `TIMEOUT` status. This value overrides the timeout value set in the
22068
+ # parent job.
22069
+ #
22070
+ # Streaming jobs do not have a timeout. The default for non-streaming
22071
+ # jobs is 2,880 minutes (48 hours).
22066
22072
  # @return [Integer]
22067
22073
  #
22068
22074
  # @!attribute [rw] max_capacity
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.115.0'
51
+ GEM_VERSION = '1.116.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.115.0
4
+ version: 1.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-14 00:00:00.000000000 Z
11
+ date: 2022-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core