funktor 0.7.23 → 0.7.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/funktor-testapp/Dockerfile +7 -1
- data/funktor-testapp/Gemfile +2 -0
- data/funktor-testapp/Gemfile.lock +4 -0
- data/funktor-testapp/funktor_config/boot.rb +3 -0
- data/funktor-testapp/funktor_config/resources/cloudwatch_dashboard.yml +4 -4
- data/funktor-testapp/serverless.yml +0 -4
- data/lib/funktor/cli/init.rb +1 -15
- data/lib/funktor/cli/templates/Dockerfile +7 -1
- data/lib/funktor/cli/templates/Gemfile +1 -1
- data/lib/funktor/cli/templates/funktor_config/boot.rb +3 -0
- data/lib/funktor/cli/templates/funktor_config/resources/cloudwatch_dashboard.yml +3 -3
- data/lib/funktor/cli/templates/funktor_init.yml.tt +2 -2
- data/lib/funktor/cli/templates/package.json +0 -1
- data/lib/funktor/cli/templates/serverless.yml +0 -4
- data/lib/funktor/job.rb +10 -2
- data/lib/funktor/version.rb +1 -1
- data/lib/funktor/worker/funktor_options.rb +15 -0
- metadata +2 -6
- data/funktor-testapp/funktor_config/package.yml +0 -11
- data/funktor-testapp/funktor_config/ruby_layer.yml +0 -11
- data/lib/funktor/cli/templates/funktor_config/package.yml +0 -11
- data/lib/funktor/cli/templates/funktor_config/ruby_layer.yml +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe7973cd6c5d59ac83b10c4726244665bd0584f7abad03ccb89a49f6e20daf3b
|
4
|
+
data.tar.gz: ea2f3d112ff0565b1d21a72fb8398f7f776eca2f28368d0c1d397cdd24a50090
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5daf5129ffd987d9370a31405655c5940ab4eb0a0d2eb3fdb5d53fdb7794c8b5723999d359b3bc5cf56738ea89c027f7fffb84f1d68f49d0c1383a9d47f0b217
|
7
|
+
data.tar.gz: 9151e301390aa929b0de57aa3c8c909c3d858315528f121077e8ff4e99427a6de7f4904be66ba777b5c16e032d496f6e42e19a3d711f8d2ea259c245872e4bd9
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
funktor (0.7.
|
4
|
+
funktor (0.7.26)
|
5
5
|
activesupport
|
6
6
|
aws-sdk-dynamodb (~> 1.62)
|
7
7
|
aws-sdk-sqs (~> 1.37)
|
@@ -22,7 +22,7 @@ GEM
|
|
22
22
|
addressable (2.8.0)
|
23
23
|
public_suffix (>= 2.0.2, < 5.0)
|
24
24
|
aws-eventstream (1.2.0)
|
25
|
-
aws-partitions (1.
|
25
|
+
aws-partitions (1.596.0)
|
26
26
|
aws-sdk-core (3.131.1)
|
27
27
|
aws-eventstream (~> 1, >= 1.0.2)
|
28
28
|
aws-partitions (~> 1, >= 1.525.0)
|
data/funktor-testapp/Dockerfile
CHANGED
@@ -8,7 +8,7 @@ FROM public.ecr.aws/lambda/ruby:2.7 AS build_image
|
|
8
8
|
#ENV BUNDLE_GEM__FURY__IO=${BUNDLE_GEM__FURY__IO}
|
9
9
|
|
10
10
|
# First we install some stuff that we need for gems that have to compile native extensions
|
11
|
-
|
11
|
+
RUN yum groupinstall "Development Tools" -y
|
12
12
|
#RUN yum install -y amazon-linux-extras
|
13
13
|
#RUN amazon-linux-extras enable postgresql11
|
14
14
|
#RUN yum install -y postgresql-devel
|
@@ -57,6 +57,12 @@ FROM public.ecr.aws/lambda/ruby:2.7 AS deploy_image
|
|
57
57
|
COPY --from=build_image /var/task .
|
58
58
|
COPY . .
|
59
59
|
|
60
|
+
# Now we prime the bootsnap cache to minimize cold start times.
|
61
|
+
|
62
|
+
ENV BOOTSNAP_CACHE_DIR=/var/task/tmp/cache
|
63
|
+
RUN bundle exec bootsnap precompile --gemfile . \
|
64
|
+
&& SKIP_ENV=true bundle exec ruby lambda_event_handlers/incoming_job_handler.rb
|
65
|
+
|
60
66
|
# And finally we have the CMD for the deployed container
|
61
67
|
# You can overwrite command in `serverless.yml` template
|
62
68
|
CMD [ "app.LambdaFunction::Handler.process" ]
|
data/funktor-testapp/Gemfile
CHANGED
@@ -22,11 +22,14 @@ GEM
|
|
22
22
|
aws-sigv4 (~> 1.1)
|
23
23
|
aws-sigv4 (1.2.4)
|
24
24
|
aws-eventstream (~> 1, >= 1.0.2)
|
25
|
+
bootsnap (1.12.0)
|
26
|
+
msgpack (~> 1.2)
|
25
27
|
concurrent-ruby (1.1.9)
|
26
28
|
i18n (1.8.10)
|
27
29
|
concurrent-ruby (~> 1.0)
|
28
30
|
jmespath (1.4.0)
|
29
31
|
minitest (5.14.4)
|
32
|
+
msgpack (1.5.2)
|
30
33
|
require_all (1.5.0)
|
31
34
|
thor (1.1.0)
|
32
35
|
tzinfo (2.0.4)
|
@@ -41,6 +44,7 @@ DEPENDENCIES
|
|
41
44
|
activesupport
|
42
45
|
aws-sdk-dynamodb (~> 1.62)
|
43
46
|
aws-sdk-sqs (~> 1.37)
|
47
|
+
bootsnap
|
44
48
|
require_all (~> 1.0)
|
45
49
|
thor
|
46
50
|
|
@@ -5,6 +5,9 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
5
5
|
require "rubygems"
|
6
6
|
require 'bundler/setup'
|
7
7
|
|
8
|
+
# load bootsnap for faster cold starts
|
9
|
+
require 'bootsnap/setup'
|
10
|
+
|
8
11
|
# Set up gems listed in the Gemfile.
|
9
12
|
Bundler.require(:default, :production)
|
10
13
|
|
@@ -1425,7 +1425,7 @@ Resources:
|
|
1425
1425
|
"y": 59,
|
1426
1426
|
"x": 19,
|
1427
1427
|
"properties": {
|
1428
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.IncomingJobHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
1428
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.IncomingJobHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
1429
1429
|
"region": "us-east-1",
|
1430
1430
|
"stacked": false,
|
1431
1431
|
"view": "timeSeries",
|
@@ -1609,7 +1609,7 @@ Resources:
|
|
1609
1609
|
"y": 69,
|
1610
1610
|
"x": 19,
|
1611
1611
|
"properties": {
|
1612
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.DefaultQueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
1612
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.DefaultQueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
1613
1613
|
"region": "us-east-1",
|
1614
1614
|
"stacked": false,
|
1615
1615
|
"view": "timeSeries",
|
@@ -1790,7 +1790,7 @@ Resources:
|
|
1790
1790
|
"y": 79,
|
1791
1791
|
"x": 19,
|
1792
1792
|
"properties": {
|
1793
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.LowConcurrencyQueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
1793
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.LowConcurrencyQueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
1794
1794
|
"region": "us-east-1",
|
1795
1795
|
"stacked": false,
|
1796
1796
|
"view": "timeSeries",
|
@@ -1960,7 +1960,7 @@ Resources:
|
|
1960
1960
|
"y": 89,
|
1961
1961
|
"x": 19,
|
1962
1962
|
"properties": {
|
1963
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.JobActivatorName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
1963
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.JobActivatorName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
1964
1964
|
"region": "us-east-1",
|
1965
1965
|
"stacked": false,
|
1966
1966
|
"view": "timeSeries",
|
@@ -52,9 +52,6 @@ custom:
|
|
52
52
|
# commands. Or fallsback to what we have set in the provider section.
|
53
53
|
stage: ${self:provider.stage, 'dev'}
|
54
54
|
funktor: ${file(funktor_config/funktor.yml)}
|
55
|
-
#rubyLayer: ${file(funktor_config/ruby_layer.yml)}
|
56
|
-
|
57
|
-
#package: ${file(funktor_config/package.yml)}
|
58
55
|
|
59
56
|
functions:
|
60
57
|
IncomingJobHandler: ${file(funktor_config/function_definitions/incoming_job_handler.yml)}
|
@@ -72,4 +69,3 @@ resources:
|
|
72
69
|
- ${file(funktor_config/resources/jobs_table.yml)}
|
73
70
|
|
74
71
|
plugins:
|
75
|
-
#- serverless-ruby-layer
|
data/lib/funktor/cli/init.rb
CHANGED
@@ -33,27 +33,13 @@ module Funktor
|
|
33
33
|
def funktor_config_yml
|
34
34
|
#template "funktor_config.yml", File.join("funktor_config.yml")
|
35
35
|
template File.join("funktor_config", "funktor.yml"), File.join("funktor_config", "funktor.yml")
|
36
|
-
template File.join("funktor_config", "ruby_layer.yml"), File.join("funktor_config", "ruby_layer.yml")
|
37
|
-
template File.join("funktor_config", "package.yml"), File.join("funktor_config", "package.yml")
|
38
36
|
template File.join("funktor_config", "environment.yml"), File.join("funktor_config", "environment.yml")
|
39
37
|
template File.join("funktor_config", "boot.rb"), File.join("funktor_config", "boot.rb")
|
40
38
|
end
|
41
39
|
|
42
40
|
def package_json
|
43
41
|
if File.exist?("package.json")
|
44
|
-
|
45
|
-
if package_data =~ /serverless-ruby-layer/
|
46
|
-
say "serverless-ruby-layer is already installed in package.json"
|
47
|
-
else
|
48
|
-
if File.exist?("package-lock.json")
|
49
|
-
run "npm install serverless-ruby-layer@1.4.0 --save-dev"
|
50
|
-
# TODO - Add handers for yarn and what not
|
51
|
-
elsif File.exist?("yarn.lock")
|
52
|
-
run "yarn add --dev serverless-ruby-layer@1.4.0"
|
53
|
-
else
|
54
|
-
say "You should install serverless-ruby-layer version 1.4.0 using yor package manager of choice."
|
55
|
-
end
|
56
|
-
end
|
42
|
+
say "package.json already exists"
|
57
43
|
else
|
58
44
|
template "package.json", File.join("package.json")
|
59
45
|
end
|
@@ -8,7 +8,7 @@ FROM public.ecr.aws/lambda/ruby:2.7 AS build_image
|
|
8
8
|
#ENV BUNDLE_GEM__FURY__IO=${BUNDLE_GEM__FURY__IO}
|
9
9
|
|
10
10
|
# First we install some stuff that we need for gems that have to compile native extensions
|
11
|
-
|
11
|
+
RUN yum groupinstall "Development Tools" -y
|
12
12
|
#RUN yum install -y amazon-linux-extras
|
13
13
|
#RUN amazon-linux-extras enable postgresql11
|
14
14
|
#RUN yum install -y postgresql-devel
|
@@ -57,6 +57,12 @@ FROM public.ecr.aws/lambda/ruby:2.7 AS deploy_image
|
|
57
57
|
COPY --from=build_image /var/task .
|
58
58
|
COPY . .
|
59
59
|
|
60
|
+
# Now we prime the bootsnap cache to minimize cold start times.
|
61
|
+
|
62
|
+
ENV BOOTSNAP_CACHE_DIR=/var/task/tmp/cache
|
63
|
+
RUN bundle exec bootsnap precompile --gemfile . \
|
64
|
+
&& SKIP_ENV=true bundle exec ruby lambda_event_handlers/incoming_job_handler.rb
|
65
|
+
|
60
66
|
# And finally we have the CMD for the deployed container
|
61
67
|
# You can overwrite command in `serverless.yml` template
|
62
68
|
CMD [ "app.LambdaFunction::Handler.process" ]
|
@@ -5,6 +5,9 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
5
5
|
require "rubygems"
|
6
6
|
require 'bundler/setup'
|
7
7
|
|
8
|
+
# load bootsnap for faster cold starts
|
9
|
+
require 'bootsnap/setup'
|
10
|
+
|
8
11
|
# Set up gems listed in the Gemfile.
|
9
12
|
Bundler.require(:default, :production)
|
10
13
|
|
@@ -511,7 +511,7 @@ Resources:
|
|
511
511
|
"y": <%= current_y %>,
|
512
512
|
"x": 19,
|
513
513
|
"properties": {
|
514
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.IncomingJobHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
514
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.IncomingJobHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
515
515
|
"region": "us-east-1",
|
516
516
|
"stacked": false,
|
517
517
|
"view": "timeSeries",
|
@@ -696,7 +696,7 @@ Resources:
|
|
696
696
|
"y": <%= current_y %>,
|
697
697
|
"x": 19,
|
698
698
|
"properties": {
|
699
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.<%= queue_name.camelize %>QueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
699
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.<%= queue_name.camelize %>QueueHandlerName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
700
700
|
"region": "us-east-1",
|
701
701
|
"stacked": false,
|
702
702
|
"view": "timeSeries",
|
@@ -867,7 +867,7 @@ Resources:
|
|
867
867
|
"y": <%= current_y %>,
|
868
868
|
"x": 19,
|
869
869
|
"properties": {
|
870
|
-
"query": "SOURCE '/aws/lambda/${self:custom.funktor.JobActivatorName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(
|
870
|
+
"query": "SOURCE '/aws/lambda/${self:custom.funktor.JobActivatorName}' | fields @initDuration\n| filter ispresent(@initDuration)\n| stats pct(@initDuration, 5) as p5,\n\n\n\n pct(@initDuration, 50) as p50,\n\n\n\n pct(@initDuration, 95) as p95,\n\n\n\n pct(@initDuration, 99) as p99\n\n\n\n by bin(1m)\n",
|
871
871
|
"region": "us-east-1",
|
872
872
|
"stacked": false,
|
873
873
|
"view": "timeSeries",
|
@@ -38,12 +38,12 @@ handlerDefaults:
|
|
38
38
|
# Visibility timeout should only come into play in the case of Funktor errors.
|
39
39
|
# Application level errors should be handled by Funktor retry mechanisms.
|
40
40
|
# The visibility timeout should be at least as long as the function timeout, and up to 6 times larger.
|
41
|
-
visibilityTimeout:
|
41
|
+
visibilityTimeout: 300
|
42
42
|
|
43
43
|
# Max recieve count affects how many times a job will retry that has been throttled at the SQS -> Lambda boundary.
|
44
44
|
# Amazon recommend this be at least 5, but I've found that higher numbers are better to avoid legit jobs ending
|
45
45
|
# up in the dead letter queue
|
46
|
-
maxReceiveCount:
|
46
|
+
maxReceiveCount: 120
|
47
47
|
|
48
48
|
# Incoming Job Handler
|
49
49
|
incomingJobHandler:
|
@@ -49,9 +49,6 @@ custom:
|
|
49
49
|
# commands. Or fallsback to what we have set in the provider section.
|
50
50
|
stage: ${self:provider.stage, 'dev'}
|
51
51
|
funktor: ${file(funktor_config/funktor.yml)}
|
52
|
-
#rubyLayer: ${file(funktor_config/ruby_layer.yml)}
|
53
|
-
|
54
|
-
#package: ${file(funktor_config/package.yml)}
|
55
52
|
|
56
53
|
functions:
|
57
54
|
<%- all_function_definitions.each do |function_definition| -%>
|
@@ -64,4 +61,3 @@ resources:
|
|
64
61
|
<%- end -%>
|
65
62
|
|
66
63
|
plugins:
|
67
|
-
#- serverless-ruby-layer
|
data/lib/funktor/job.rb
CHANGED
@@ -114,8 +114,16 @@ module Funktor
|
|
114
114
|
self.delay = seconds_to_delay(retries)
|
115
115
|
end
|
116
116
|
|
117
|
-
# delayed_job and sidekiq use the same basic formula
|
118
117
|
def seconds_to_delay(count)
|
118
|
+
if worker_class&.funktor_retry_in_block
|
119
|
+
worker_class.funktor_retry_in_block.call(count)
|
120
|
+
else
|
121
|
+
default_seconds_to_delay(count)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
# delayed_job and sidekiq use the same basic formula
|
126
|
+
def default_seconds_to_delay(count)
|
119
127
|
(count**4) + 15 + (rand(30) * (count + 1))
|
120
128
|
end
|
121
129
|
|
@@ -124,7 +132,7 @@ module Funktor
|
|
124
132
|
end
|
125
133
|
|
126
134
|
def retry_limit
|
127
|
-
25
|
135
|
+
worker_class&.custom_retry_limit || 25
|
128
136
|
end
|
129
137
|
|
130
138
|
def can_retry
|
data/lib/funktor/version.rb
CHANGED
@@ -7,6 +7,7 @@ module Funktor
|
|
7
7
|
base.extend ClassMethods
|
8
8
|
base.class_eval do
|
9
9
|
class_attribute :funktor_options_hash
|
10
|
+
class_attribute :funktor_retry_in_block
|
10
11
|
end
|
11
12
|
end
|
12
13
|
module ClassMethods
|
@@ -18,6 +19,10 @@ module Funktor
|
|
18
19
|
self.funktor_options_hash || {}
|
19
20
|
end
|
20
21
|
|
22
|
+
def funktor_retry_in(&block)
|
23
|
+
self.funktor_retry_in_block = block
|
24
|
+
end
|
25
|
+
|
21
26
|
def custom_queue_url
|
22
27
|
get_funktor_options[:queue_url]
|
23
28
|
end
|
@@ -26,6 +31,16 @@ module Funktor
|
|
26
31
|
get_funktor_options[:queue]
|
27
32
|
end
|
28
33
|
|
34
|
+
def custom_retry_limit
|
35
|
+
retry_limit = get_funktor_options[:retry]
|
36
|
+
if retry_limit.nil?
|
37
|
+
retry_limit = 25
|
38
|
+
elsif !retry_limit # if someone did "retry: false"
|
39
|
+
retry_limit = 0
|
40
|
+
end
|
41
|
+
return retry_limit
|
42
|
+
end
|
43
|
+
|
29
44
|
def queue_url
|
30
45
|
custom_queue_url
|
31
46
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: funktor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Green
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-sqs
|
@@ -199,14 +199,12 @@ files:
|
|
199
199
|
- funktor-testapp/funktor_config/iam_permissions/jobs_table_secondary_index.yml
|
200
200
|
- funktor-testapp/funktor_config/iam_permissions/low_concurrency_queue.yml
|
201
201
|
- funktor-testapp/funktor_config/iam_permissions/ssm.yml
|
202
|
-
- funktor-testapp/funktor_config/package.yml
|
203
202
|
- funktor-testapp/funktor_config/resources/cloudwatch_dashboard.yml
|
204
203
|
- funktor-testapp/funktor_config/resources/default_queue.yml
|
205
204
|
- funktor-testapp/funktor_config/resources/incoming_job_queue.yml
|
206
205
|
- funktor-testapp/funktor_config/resources/incoming_job_queue_user.yml
|
207
206
|
- funktor-testapp/funktor_config/resources/jobs_table.yml
|
208
207
|
- funktor-testapp/funktor_config/resources/low_concurrency_queue.yml
|
209
|
-
- funktor-testapp/funktor_config/ruby_layer.yml
|
210
208
|
- funktor-testapp/funktor_init.yml
|
211
209
|
- funktor-testapp/lambda_event_handlers/default_queue_handler.rb
|
212
210
|
- funktor-testapp/lambda_event_handlers/incoming_job_handler.rb
|
@@ -242,13 +240,11 @@ files:
|
|
242
240
|
- lib/funktor/cli/templates/funktor_config/iam_permissions/jobs_table_secondary_index.yml
|
243
241
|
- lib/funktor/cli/templates/funktor_config/iam_permissions/ssm.yml
|
244
242
|
- lib/funktor/cli/templates/funktor_config/iam_permissions/work_queue.yml
|
245
|
-
- lib/funktor/cli/templates/funktor_config/package.yml
|
246
243
|
- lib/funktor/cli/templates/funktor_config/resources/cloudwatch_dashboard.yml
|
247
244
|
- lib/funktor/cli/templates/funktor_config/resources/incoming_job_queue.yml
|
248
245
|
- lib/funktor/cli/templates/funktor_config/resources/incoming_job_queue_user.yml
|
249
246
|
- lib/funktor/cli/templates/funktor_config/resources/jobs_table.yml
|
250
247
|
- lib/funktor/cli/templates/funktor_config/resources/work_queue.yml
|
251
|
-
- lib/funktor/cli/templates/funktor_config/ruby_layer.yml
|
252
248
|
- lib/funktor/cli/templates/funktor_init.yml.tt
|
253
249
|
- lib/funktor/cli/templates/gitignore
|
254
250
|
- lib/funktor/cli/templates/lambda_event_handlers/incoming_job_handler.rb
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# TODO - Figure out how to allow individual packaging to work out of the box.
|
2
|
-
#individually: false
|
3
|
-
#include:
|
4
|
-
#- Gemfile
|
5
|
-
#- Gemfile.lock
|
6
|
-
#- funktor_config/boot.rb
|
7
|
-
#- app/**
|
8
|
-
# Evertyting is excluded by default with serverless-ruby-layer, but you could use
|
9
|
-
# the lines below to exlude files that are inside an include path.
|
10
|
-
#exclude:
|
11
|
-
# - workers/excluded_worker.rb
|
@@ -1,11 +0,0 @@
|
|
1
|
-
#use_docker: false
|
2
|
-
#docker_yums:
|
3
|
-
#- postgresql-devel
|
4
|
-
#native_libs:
|
5
|
-
#- /usr/lib64/libpq.so.5
|
6
|
-
#- /usr/lib64/libldap_r-2.4.so.2
|
7
|
-
#- /usr/lib64/liblber-2.4.so.2
|
8
|
-
#- /usr/lib64/libsasl2.so.3
|
9
|
-
#- /usr/lib64/libssl3.so
|
10
|
-
#- /usr/lib64/libsmime3.so
|
11
|
-
#- /usr/lib64/libnss3.so
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# TODO - Figure out how to allow individual packaging to work out of the box.
|
2
|
-
#individually: false
|
3
|
-
#include:
|
4
|
-
#- Gemfile
|
5
|
-
#- Gemfile.lock
|
6
|
-
#- funktor_config/boot.rb
|
7
|
-
#- app/**
|
8
|
-
# Evertyting is excluded by default with serverless-ruby-layer, but you could use
|
9
|
-
# the lines below to exlude files that are inside an include path.
|
10
|
-
#exclude:
|
11
|
-
# - workers/excluded_worker.rb
|
@@ -1,11 +0,0 @@
|
|
1
|
-
#use_docker: false
|
2
|
-
#docker_yums:
|
3
|
-
#- postgresql-devel
|
4
|
-
#native_libs:
|
5
|
-
#- /usr/lib64/libpq.so.5
|
6
|
-
#- /usr/lib64/libldap_r-2.4.so.2
|
7
|
-
#- /usr/lib64/liblber-2.4.so.2
|
8
|
-
#- /usr/lib64/libsasl2.so.3
|
9
|
-
#- /usr/lib64/libssl3.so
|
10
|
-
#- /usr/lib64/libsmime3.so
|
11
|
-
#- /usr/lib64/libnss3.so
|