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

Fresh install Error in install/set-up-and-migrate-database.sh:12 #2704

Closed
vladdevops opened this issue Jan 12, 2024 · 7 comments
Closed

Fresh install Error in install/set-up-and-migrate-database.sh:12 #2704

vladdevops opened this issue Jan 12, 2024 · 7 comments

Comments

@vladdevops
Copy link

Self-Hosted Version

23.12.1

CPU Architecture

x86_64

Docker Version

24.0.7

Docker Compose Version

2.21.0

Steps to Reproduce

./install on CentOS 7

Expected Result

Complete install

Actual Result

done.
Traceback (most recent call last):
  File "/usr/local/bin/sentry", line 8, in <module>
    sys.exit(main())
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/__init__.py", line 190, in main
    func(**kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1157, in __call__
    return self.main(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1078, in main
    rv = self.invoke(ctx)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1688, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1434, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 783, in invoke
    return __callback(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 33, in new_func
    return f(get_current_context(), *args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/decorators.py", line 28, in inner
    configure()
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/__init__.py", line 126, in configure
    _configure(ctx, py, yaml, skip_service_validation)
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/settings.py", line 148, in configure
    initialize_app(
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/initializer.py", line 372, in initialize_app
    django.setup()
  File "/usr/local/lib/python3.10/site-packages/django/__init__.py", line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
  File "/usr/local/lib/python3.10/site-packages/django/apps/registry.py", line 114, in populate
    app_config.import_models()
  File "/usr/local/lib/python3.10/site-packages/django/apps/config.py", line 301, in import_models
    self.models_module = import_module(models_module_name)
  File "/usr/local/lib/python3.10/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/usr/local/lib/python3.10/site-packages/sentry/models/__init__.py", line 37, in <module>
    from .eventattachment import *  # NOQA
  File "/usr/local/lib/python3.10/site-packages/sentry/models/eventattachment.py", line 16, in <module>
    from sentry.attachments.base import CachedAttachment
  File "/usr/local/lib/python3.10/site-packages/sentry/attachments/__init__.py", line 9, in <module>
    attachment_cache = import_string(settings.SENTRY_ATTACHMENTS)(**settings.SENTRY_ATTACHMENTS_OPTIONS)
  File "/usr/local/lib/python3.10/site-packages/sentry/utils/imports.py", line 26, in import_string
    result = _cache[path]
  File "/usr/local/lib/python3.10/site-packages/sentry/utils/imports.py", line 8, in __missing__
    module = __import__(module_name, {}, {}, [class_name])
  File "/usr/local/lib/python3.10/site-packages/sentry/attachments/default.py", line 1, in <module>
    from sentry.cache import default_cache
  File "/usr/local/lib/python3.10/site-packages/sentry/cache/__init__.py", line 10, in <module>
    raise ImproperlyConfigured("You must configure ``cache.backend``.")
django.core.exceptions.ImproperlyConfigured: You must configure ``cache.backend``.
Error in install/set-up-and-migrate-database.sh:12.
'$dcr web upgrade' exited with status 1
-> ./install.sh:main:34
--> install/set-up-and-migrate-database.sh:source:12

Cleaning up...```

### Event ID

_No response_
@aldy505
Copy link
Collaborator

aldy505 commented Jan 16, 2024

Hello! Did you change anything on the sentry/config.yml file? Or did you leave that as is?

@vladdevops
Copy link
Author

Hello! Did you change anything on the sentry/config.yml file? Or did you leave that as is?

Hi.
Didn't change anything, default.

sentry/config.yml
# While a lot of configuration in Sentry can be changed via the UI, for all
# new-style config (as of 8.0) you can also declare values here in this file
# to enforce defaults or to ensure they cannot be changed via the UI. For more
# information see the Sentry documentation.

###############
# Mail Server #
###############

# mail.backend: 'smtp'  # Use dummy if you want to disable email entirely
mail.host: 'smtp'
# mail.port: 25
# mail.username: ''
# mail.password: ''
# mail.use-tls: false
# mail.use-ssl: false

# NOTE: The following 2 configs (mail.from and mail.list-namespace) are set
#       through SENTRY_MAIL_HOST in sentry.conf.py so remove those first if
#       you want your values in this file to be effective!


# The email address to send on behalf of
# mail.from: 'root@localhost' or ...
# mail.from: 'System Administrator <root@localhost>'

# The mailing list namespace for emails sent by this Sentry server.
# This should be a domain you own (often the same domain as the domain
# part of the `mail.from` configuration parameter value) or `localhost`.
# mail.list-namespace: 'localhost'

# If you'd like to configure email replies, enable this.
# mail.enable-replies: true

# When email-replies are enabled, this value is used in the Reply-To header
# mail.reply-hostname: ''

# If you're using mailgun for inbound mail, set your API key and configure a
# route to forward to /api/hooks/mailgun/inbound/
# Also don't forget to set `mail.enable-replies: true` above.
# mail.mailgun-api-key: ''

###################
# System Settings #
###################

# If this file ever becomes compromised, it's important to generate a new key.
# Changing this value will result in all current sessions being invalidated.
# A new key can be generated with `$ sentry config generate-secret-key`
system.secret-key: '[u\\)kD0ke66JdHo_2hbiX-)Z4hSf8FAn[;=1@7RIV,SQ.tN^<'

# The ``redis.clusters`` setting is used, unsurprisingly, to configure Redis
# clusters. These clusters can be then referred to by name when configuring
# backends such as the cache, digests, or TSDB backend.
# redis.clusters:
#   default:
#     hosts:
#       0:
#         host: 127.0.0.1
#         port: 6379

################
# File storage #
################

# Uploaded media uses these `filestore` settings. The available
# backends are either `filesystem` or `s3`.

filestore.backend: 'filesystem'
filestore.options:
location: '/data/files'
dsym.cache-path: '/data/dsym-cache'
releasefile.cache-path: '/data/releasefile-cache'

# filestore.backend: 's3'
# filestore.options:
#   access_key: 'AKIXXXXXX'
#   secret_key: 'XXXXXXX'
#   bucket_name: 's3-bucket-name'

# The URL prefix in which Sentry is accessible
# system.url-prefix: https://example.sentry.com
system.internal-url-prefix: 'http://web:9000'
symbolicator.enabled: true
symbolicator.options:
url: "http://symbolicator:3021"

transaction-events.force-disable-internal-project: true

######################
# GitHub Integration #
######################

# Refer to https://develop.sentry.dev/integrations/github/ for setup instructions.

# github-login.extended-permissions: ['repo']
# github-app.id: GITHUB_APP_ID
# github-app.name: 'GITHUB_APP_NAME'
# github-app.webhook-secret: 'GITHUB_WEBHOOK_SECRET' # Use only if configured in GitHub
# github-app.client-id: 'GITHUB_CLIENT_ID'
# github-app.client-secret: 'GITHUB_CLIENT_SECRET'
# github-app.private-key: |
#   -----BEGIN RSA PRIVATE KEY-----
#   privatekeyprivatekeyprivatekeyprivatekey
#   privatekeyprivatekeyprivatekeyprivatekey
#   privatekeyprivatekeyprivatekeyprivatekey
#   privatekeyprivatekeyprivatekeyprivatekey
#   privatekeyprivatekeyprivatekeyprivatekey
#   -----END RSA PRIVATE KEY-----

#####################
# Slack Integration #
#####################

# Refer to https://develop.sentry.dev/integrations/slack/ for setup instructions.

# slack.client-id: <'client id'>
# slack.client-secret: <client secret>
# slack.signing-secret: <signing secret>
## If legacy-app is True use verfication-token instead of signing-secret
# slack.verification-token: <verification token>


#######################
# Discord Integration #
#######################

# Refer to https://develop.sentry.dev/integrations/discord/

# discord.application-id: "<application id>"
# discord.public-key: "<public key>"
# discord.client-secret: "<client secret>"
# discord.bot-token: "<bot token>"

@getsantry getsantry bot moved this from Waiting for: Community to Waiting for: Product Owner in GitHub Issues with 👀 2 Jan 16, 2024
@hubertdeng123
Copy link
Member

Not sure why this would be a problem regularly. Are you setting the cache backend properly in your sentry.conf.py?

CACHES = {
    "default": {
        "BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
        "LOCATION": ["memcached:11211"],
        "TIMEOUT": 3600,
        "OPTIONS": {
            "server_max_value_length": unit_text_to_bytes(env("SENTRY_MAX_EXTERNAL_SOURCEMAP_SIZE", "1M")),
        },
    }
}

@vladdevops
Copy link
Author

Not sure why this would be a problem regularly. Are you setting the cache backend properly in your sentry.conf.py?

CACHES = {
    "default": {
        "BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
        "LOCATION": ["memcached:11211"],
        "TIMEOUT": 3600,
        "OPTIONS": {
            "server_max_value_length": unit_text_to_bytes(env("SENTRY_MAX_EXTERNAL_SOURCEMAP_SIZE", "1M")),
        },
    }
}

This file was almost empty, after deleting sentry/sentry.conf.py and running ./install.sh

Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
15:16:53 [WARNING] sentry.utils.geo: Error opening GeoIP database: /geoip/GeoLite2-City.mmdb
15:16:53 [WARNING] sentry.utils.geo: Error opening GeoIP database in Rust: /geoip/GeoLite2-City.mmdb
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for system.url-prefix (key='system.url-prefix')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for system.url-prefix (key='system.url-prefix')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for github.apps-install-url (key='github.apps-install-url')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for github.apps-install-url (key='github.apps-install-url')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for vercel.integration-slug (key='vercel.integration-slug')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for vercel.integration-slug (key='vercel.integration-slug')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for msteams.app-id (key='msteams.app-id')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for msteams.app-id (key='msteams.app-id')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for discord.application-id (key='discord.application-id')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for discord.application-id (key='discord.application-id')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for discord.public-key (key='discord.public-key')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for discord.public-key (key='discord.public-key')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for discord.bot-token (key='discord.bot-token')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for discord.bot-token (key='discord.bot-token')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for discord.client-secret (key='discord.client-secret')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for discord.client-secret (key='discord.client-secret')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to fetch option cache for delightful_metrics.enable_code_locations (key='delightful_metrics.enable_code_locations')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for delightful_metrics.enable_code_locations (key='delightful_metrics.enable_code_locations')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for redis.clusters (key='redis.clusters')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:55 [WARNING] sentry: Unable to update option cache for redis.clusters (key='redis.clusters')
Running migrations for default
Operations to perform:
  Apply all migrations: auth, contenttypes, feedback, hybridcloud, nodestore, replays, sentry, sessions, sites, social_auth
Running migrations:
  No migrations to apply.
Creating missing DSNs
Correcting Group.num_comments counter
15:16:57 [INFO] sentry.outboxes: Executing outbox replication backfill
15:16:57 [INFO] sentry.outboxes: Processing sentry.ControlOutboxs...
15:16:57 [INFO] sentry.outboxes: Processing sentry.RegionOutboxs...
15:16:57 [INFO] sentry.outboxes: done
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:57 [WARNING] sentry: Unable to fetch option cache for transaction-events.force-disable-internal-project (key='transaction-events.force-disable-internal-project')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
15:16:57 [WARNING] sentry: Unable to update option cache for transaction-events.force-disable-internal-project (key='transaction-events.force-disable-internal-project')
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/django/db/models/query.py", line 581, in get_or_create
    return self.get(**kwargs), False
  File "/usr/local/lib/python3.10/site-packages/django/db/models/query.py", line 435, in get
    raise self.model.DoesNotExist(
sentry.models.organization.Organization.DoesNotExist: Organization matching query does not exist.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/sentry", line 8, in <module>
    sys.exit(main())
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/__init__.py", line 190, in main
    func(**kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1157, in __call__
    return self.main(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1078, in main
    rv = self.invoke(ctx)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1688, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1434, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 783, in invoke
    return __callback(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 33, in new_func
    return f(get_current_context(), *args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/decorators.py", line 29, in inner
    return ctx.invoke(f, *args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 783, in invoke
    return __callback(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 33, in new_func
    return f(get_current_context(), *args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/commands/upgrade.py", line 117, in upgrade
    _upgrade(
  File "/usr/local/lib/python3.10/site-packages/sentry/runner/commands/upgrade.py", line 71, in _upgrade
    post_upgrade.send(sender=SiloMode.get_current_mode(), interactive=interactive)
  File "/usr/local/lib/python3.10/site-packages/django/dispatch/dispatcher.py", line 180, in send
    return [
  File "/usr/local/lib/python3.10/site-packages/django/dispatch/dispatcher.py", line 181, in <listcomp>
    (receiver, receiver(signal=self, sender=sender, **named))
  File "/usr/local/lib/python3.10/site-packages/sentry/receivers/core.py", line 44, in wrapped
    return func(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/receivers/core.py", line 57, in create_default_projects
    create_default_project(
  File "/usr/local/lib/python3.10/site-packages/sentry/silo/base.py", line 145, in override
    return original_method(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/receivers/core.py", line 82, in create_default_project
    org, _ = Organization.objects.get_or_create(slug="sentry", defaults={"name": "Sentry"})
  File "/usr/local/lib/python3.10/site-packages/sentry/silo/base.py", line 145, in override
    return original_method(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/django/db/models/manager.py", line 85, in manager_method
    return getattr(self.get_queryset(), name)(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/silo/base.py", line 145, in override
    return original_method(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/django/db/models/query.py", line 588, in get_or_create
    return self.create(**params), True
  File "/usr/local/lib/python3.10/site-packages/sentry/silo/base.py", line 145, in override
    return original_method(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/django/db/models/query.py", line 453, in create
    obj.save(force_insert=True, using=self.db)
  File "/usr/local/lib/python3.10/site-packages/sentry/models/organization.py", line 268, in save
    super().save(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/sentry/db/models/outboxes.py", line 72, in save
    super().save(*args, **kwds)
  File "/usr/local/lib/python3.10/site-packages/django/db/models/base.py", line 739, in save
    self.save_base(using=using, force_insert=force_insert,
  File "/usr/local/lib/python3.10/site-packages/sentry/silo/base.py", line 145, in override
    return original_method(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/django/db/models/base.py", line 787, in save_base
    post_save.send(
  File "/usr/local/lib/python3.10/site-packages/django/dispatch/dispatcher.py", line 180, in send
    return [
  File "/usr/local/lib/python3.10/site-packages/django/dispatch/dispatcher.py", line 181, in <listcomp>
    (receiver, receiver(signal=self, sender=sender, **named))
  File "/usr/local/lib/python3.10/site-packages/sentry/db/models/manager/base.py", line 181, in __post_save
    cache.set(
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in __getattr__
    return getattr(self._connections[self._alias], item)
  File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in __getitem__
    conn = self.create_connection(alias)
  File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/__init__.py", line 44, in create_connection
    return backend_cls(location, params)
  File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in __init__
    import memcache
ModuleNotFoundError: No module named 'memcache'
Error in install/set-up-and-migrate-database.sh:12.
'$dcr web upgrade' exited with status 1
-> ./install.sh:main:34
--> install/set-up-and-migrate-database.sh:source:12
sentry/sentry.conf.py
# This file is just Python, with a touch of Django which means
# you can inherit and tweak settings to your hearts content.

from sentry.conf.server import *  # NOQA

BYTE_MULTIPLIER = 1024
UNITS = ("K", "M", "G")
def unit_text_to_bytes(text):
  unit = text[-1].upper()
  power = UNITS.index(unit) + 1
  return float(text[:-1])*(BYTE_MULTIPLIER**power)


# Generously adapted from pynetlinux: https://github.com/rlisagor/pynetlinux/blob/e3f16978855c6649685f0c43d4c3fcf768427ae5/pynetlinux/ifconfig.py#L197-L223
def get_internal_network():
  import ctypes
  import fcntl
  import math
  import socket
  import struct

  iface = b"eth0"
  sockfd = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  ifreq = struct.pack(b"16sH14s", iface, socket.AF_INET, b"\x00" * 14)

  try:
      ip = struct.unpack(
          b"!I", struct.unpack(b"16sH2x4s8x", fcntl.ioctl(sockfd, 0x8915, ifreq))[2]
      )[0]
      netmask = socket.ntohl(
          struct.unpack(b"16sH2xI8x", fcntl.ioctl(sockfd, 0x891B, ifreq))[2]
      )
  except IOError:
      return ()
  base = socket.inet_ntoa(struct.pack(b"!I", ip & netmask))
  netmask_bits = 32 - int(round(math.log(ctypes.c_uint32(~netmask).value + 1, 2), 1))
  return "{0:s}/{1:d}".format(base, netmask_bits)


INTERNAL_SYSTEM_IPS = (get_internal_network(),)


DATABASES = {
  "default": {
      "ENGINE": "sentry.db.postgres",
      "NAME": "postgres",
      "USER": "postgres",
      "PASSWORD": "",
      "HOST": "postgres",
      "PORT": "",
  }
}

# You should not change this setting after your database has been created
# unless you have altered all schemas first
SENTRY_USE_BIG_INTS = True

# If you're expecting any kind of real traffic on Sentry, we highly recommend
# configuring the CACHES and Redis settings

###########
# General #
###########

# Instruct Sentry that this install intends to be run by a single organization
# and thus various UI optimizations should be enabled.
SENTRY_SINGLE_ORGANIZATION = True

SENTRY_OPTIONS["system.event-retention-days"] = int(
  env("SENTRY_EVENT_RETENTION_DAYS", "90")
)

#########
# Redis #
#########

# Generic Redis configuration used as defaults for various things including:
# Buffers, Quotas, TSDB

SENTRY_OPTIONS["redis.clusters"] = {
  "default": {
      "hosts": {0: {"host": "redis", "password": "", "port": "6379", "db": "0"}}
  }
}

#########
# Queue #
#########

# See https://develop.sentry.dev/services/queue/ for more
# information on configuring your queue broker and workers. Sentry relies
# on a Python framework called Celery to manage queues.

rabbitmq_host = None
if rabbitmq_host:
  BROKER_URL = "amqp://{username}:{password}@{host}/{vhost}".format(
      username="guest", password="guest", host=rabbitmq_host, vhost="/"
  )
else:
  BROKER_URL = "redis://:{password}@{host}:{port}/{db}".format(
      **SENTRY_OPTIONS["redis.clusters"]["default"]["hosts"][0]
  )


#########
# Cache #
#########

# Sentry currently utilizes two separate mechanisms. While CACHES is not a
# requirement, it will optimize several high throughput patterns.

CACHES = {
  "default": {
      "BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
      "LOCATION": ["memcached:11211"],
      "TIMEOUT": 3600,
      "OPTIONS": {
          "server_max_value_length": unit_text_to_bytes(env("SENTRY_MAX_EXTERNAL_SOURCEMAP_SIZE", "1M")),
      },
  }
}

# A primary cache is required for things such as processing events
SENTRY_CACHE = "sentry.cache.redis.RedisCache"

DEFAULT_KAFKA_OPTIONS = {
  "bootstrap.servers": "kafka:9092",
  "message.max.bytes": 50000000,
  "socket.timeout.ms": 1000,
}

SENTRY_EVENTSTREAM = "sentry.eventstream.kafka.KafkaEventStream"
SENTRY_EVENTSTREAM_OPTIONS = {"producer_configuration": DEFAULT_KAFKA_OPTIONS}

KAFKA_CLUSTERS["default"] = DEFAULT_KAFKA_OPTIONS

###############
# Rate Limits #
###############

# Rate limits apply to notification handlers and are enforced per-project
# automatically.

SENTRY_RATELIMITER = "sentry.ratelimits.redis.RedisRateLimiter"

##################
# Update Buffers #
##################

# Buffers (combined with queueing) act as an intermediate layer between the
# database and the storage API. They will greatly improve efficiency on large
# numbers of the same events being sent to the API in a short amount of time.
# (read: if you send any kind of real data to Sentry, you should enable buffers)

SENTRY_BUFFER = "sentry.buffer.redis.RedisBuffer"

##########
# Quotas #
##########

# Quotas allow you to rate limit individual projects or the Sentry install as
# a whole.

SENTRY_QUOTAS = "sentry.quotas.redis.RedisQuota"

########
# TSDB #
########

# The TSDB is used for building charts as well as making things like per-rate
# alerts possible.

SENTRY_TSDB = "sentry.tsdb.redissnuba.RedisSnubaTSDB"

#########
# SNUBA #
#########

SENTRY_SEARCH = "sentry.search.snuba.EventsDatasetSnubaSearchBackend"
SENTRY_SEARCH_OPTIONS = {}
SENTRY_TAGSTORE_OPTIONS = {}

###########
# Digests #
###########

# The digest backend powers notification summaries.

SENTRY_DIGESTS = "sentry.digests.backends.redis.RedisBackend"

###################
# Metrics Backend #
###################

SENTRY_RELEASE_HEALTH = "sentry.release_health.metrics.MetricsReleaseHealthBackend"
SENTRY_RELEASE_MONITOR = "sentry.release_health.release_monitor.metrics.MetricReleaseMonitorBackend"

##############
# Web Server #
##############

SENTRY_WEB_HOST = "0.0.0.0"
SENTRY_WEB_PORT = 9000
SENTRY_WEB_OPTIONS = {
  "http": "%s:%s" % (SENTRY_WEB_HOST, SENTRY_WEB_PORT),
  "protocol": "uwsgi",
  # This is needed in order to prevent https://github.com/getsentry/sentry/blob/c6f9660e37fcd9c1bbda8ff4af1dcfd0442f5155/src/sentry/services/http.py#L70
  "uwsgi-socket": None,
  "so-keepalive": True,
  # Keep this between 15s-75s as that's what Relay supports
  "http-keepalive": 15,
  "http-chunked-input": True,
  # the number of web workers
  "workers": 3,
  "threads": 4,
  "memory-report": False,
  # Some stuff so uwsgi will cycle workers sensibly
  "max-requests": 100000,
  "max-requests-delta": 500,
  "max-worker-lifetime": 86400,
  # Duplicate options from sentry default just so we don't get
  # bit by sentry changing a default value that we depend on.
  "thunder-lock": True,
  "log-x-forwarded-for": False,
  "buffer-size": 32768,
  "limit-post": 209715200,
  "disable-logging": True,
  "reload-on-rss": 600,
  "ignore-sigpipe": True,
  "ignore-write-errors": True,
  "disable-write-exception": True,
}

###########
# SSL/TLS #
###########

# If you're using a reverse SSL proxy, you should enable the X-Forwarded-Proto
# header and enable the settings below

# SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
# USE_X_FORWARDED_HOST = True
# SESSION_COOKIE_SECURE = True
# CSRF_COOKIE_SECURE = True
# SOCIAL_AUTH_REDIRECT_IS_HTTPS = True

# End of SSL/TLS settings

########
# Mail #
########

SENTRY_OPTIONS["mail.list-namespace"] = env('SENTRY_MAIL_HOST', 'localhost')
SENTRY_OPTIONS["mail.from"] = f"sentry@{SENTRY_OPTIONS['mail.list-namespace']}"

############
# Features #
############

SENTRY_FEATURES["projects:sample-events"] = False
SENTRY_FEATURES.update(
  {
      feature: True
      for feature in (
          "organizations:discover",
          "organizations:events",
          "organizations:global-views",
          "organizations:incidents",
          "organizations:integrations-issue-basic",
          "organizations:integrations-issue-sync",
          "organizations:invite-members",
          "organizations:metric-alert-builder-aggregate",
          "organizations:sso-basic",
          "organizations:sso-rippling",
          "organizations:sso-saml2",
          "organizations:performance-view",
          "organizations:advanced-search",
          "organizations:session-replay",
          "organizations:issue-platform",
          "organizations:profiling",
          "organizations:dashboards-mep",
          "organizations:mep-rollout-flag",
          "organizations:dashboards-rh-widget",
          "organizations:metrics-extraction",
          "organizations:transaction-metrics-extraction",
          "projects:custom-inbound-filters",
          "projects:data-forwarding",
          "projects:discard-groups",
          "projects:plugins",
          "projects:rate-limits",
          "projects:servicehooks",
      )
  }
)

#######################
# MaxMind Integration #
#######################

GEOIP_PATH_MMDB = '/geoip/GeoLite2-City.mmdb'

#########################
# Bitbucket Integration #
#########################

# BITBUCKET_CONSUMER_KEY = 'YOUR_BITBUCKET_CONSUMER_KEY'
# BITBUCKET_CONSUMER_SECRET = 'YOUR_BITBUCKET_CONSUMER_SECRET'

##############################################
# Suggested Fix Feature / OpenAI Integration #
##############################################

# See https://docs.sentry.io/product/issues/issue-details/ai-suggested-solution/
# for more information about the feature. Make sure the OpenAI's privacy policy is
# aligned with your company.

# Set the feature to be True if you'd like to enable Suggested Fix. You'll also need to
# add your OPENAI_API_KEY to the docker-compose.yml file.
SENTRY_FEATURES["organizations:open-ai-suggestion"] = False

##############################################
# Content Security Policy settings
##############################################

# CSP_REPORT_URI = "https://{your-sentry-installation}/api/{csp-project}/security/?sentry_key={sentry-key}"
CSP_REPORT_ONLY = True

# optional extra permissions
# https://django-csp.readthedocs.io/en/latest/configuration.html
# CSP_SCRIPT_SRC += ["example.com"]

@getsantry getsantry bot moved this from Waiting for: Community to Waiting for: Product Owner in GitHub Issues with 👀 2 Jan 19, 2024
@crummy
Copy link

crummy commented Jan 21, 2024

I just saw this same behaviour. Running onprem, ran ./install.sh to upgrade our local setup, saw the error during install.sh (well, I did not notice it at the time as the script still finished with 'you're all done'), then ran docker-compose up -d and now several containers have the ModuleNotFoundError: No module named 'memcache' in a stacktrace.

sentry_install_log-2024-01-21_19-09-02.txt ▶ Parsing command line ...

▶ Detecting Docker platform
Detected Docker platform is linux/amd64

▶ Initializing Docker Compose ...

▶ Setting up error handling ...
#0 building with "default" instance using docker driver

#1 [internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 292B 0.0s done
#2 DONE 0.0s

#3 [auth] library/debian:pull token for registry-1.docker.io
#3 DONE 0.0s

#4 [internal] load metadata for docker.io/library/debian:bookworm-slim
#4 DONE 0.4s

#5 [1/2] FROM docker.io/library/debian:bookworm-slim@sha256:f4a83aa865a2b4a064ff142aa91c713180df9fcb86ce676b5de2981029379c37
#5 resolve docker.io/library/debian:bookworm-slim@sha256:f4a83aa865a2b4a064ff142aa91c713180df9fcb86ce676b5de2981029379c37 done
#5 sha256:f4a83aa865a2b4a064ff142aa91c713180df9fcb86ce676b5de2981029379c37 1.85kB / 1.85kB done
#5 sha256:d6a343a9b7faf367bd975cadb5c9af51874a8ecf1a2b2baa96877d578ac96722 529B / 529B done
#5 sha256:971072c492527e2c784eeb338b6c877e3d65229aa63d1cc2d1c4449aa1e83ff2 1.46kB / 1.46kB done
#5 sha256:2f44b7a888fa005d07c031d3cfad2a1c0344207def2ab9dbb97712425ff812c1 29.13MB / 29.13MB 0.3s done
#5 extracting sha256:2f44b7a888fa005d07c031d3cfad2a1c0344207def2ab9dbb97712425ff812c1
#5 extracting sha256:2f44b7a888fa005d07c031d3cfad2a1c0344207def2ab9dbb97712425ff812c1 1.7s done
#5 DONE 2.1s

#6 [2/2] RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends jq && apt-get clean && rm -rf /var/lib/apt/lists/*
#6 0.413 + apt-get update
#6 0.444 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#6 0.477 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
#6 0.483 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#6 0.561 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#6 0.621 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [12.7 kB]
#6 0.677 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [134 kB]
#6 1.883 Fetched 9185 kB in 1s (6331 kB/s)
#6 1.883 Reading package lists...
#6 2.655 + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends jq
#6 2.663 Reading package lists...
#6 3.410 Building dependency tree...
#6 3.582 Reading state information...
#6 3.818 The following additional packages will be installed:
#6 3.819 libjq1 libonig5
#6 3.877 The following NEW packages will be installed:
#6 3.879 jq libjq1 libonig5
#6 3.902 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
#6 3.902 Need to get 388 kB of archives.
#6 3.902 After this operation, 1165 kB of additional disk space will be used.
#6 3.902 Get:1 http://deb.debian.org/debian bookworm/main amd64 libonig5 amd64 6.9.8-1 [188 kB]
#6 3.912 Get:2 http://deb.debian.org/debian bookworm/main amd64 libjq1 amd64 1.6-2.1 [135 kB]
#6 3.914 Get:3 http://deb.debian.org/debian bookworm/main amd64 jq amd64 1.6-2.1 [64.9 kB]
#6 4.074 debconf: delaying package configuration, since apt-utils is not installed
#6 4.107 Fetched 388 kB in 0s (15.3 MB/s)
#6 4.121 Selecting previously unselected package libonig5:amd64.
(Reading database ... 6098 files and directories currently installed.)
#6 4.125 Preparing to unpack .../libonig5_6.9.8-1_amd64.deb ...
#6 4.129 Unpacking libonig5:amd64 (6.9.8-1) ...
#6 4.165 Selecting previously unselected package libjq1:amd64.
#6 4.167 Preparing to unpack .../libjq1_1.6-2.1_amd64.deb ...
#6 4.168 Unpacking libjq1:amd64 (1.6-2.1) ...
#6 4.196 Selecting previously unselected package jq.
#6 4.198 Preparing to unpack .../archives/jq_1.6-2.1_amd64.deb ...
#6 4.199 Unpacking jq (1.6-2.1) ...
#6 4.222 Setting up libonig5:amd64 (6.9.8-1) ...
#6 4.225 Setting up libjq1:amd64 (1.6-2.1) ...
#6 4.228 Setting up jq (1.6-2.1) ...
#6 4.231 Processing triggers for libc-bin (2.36-9+deb12u3) ...
#6 4.251 + apt-get clean
#6 4.256 + rm -rf /var/lib/apt/lists/auxfiles /var/lib/apt/lists/deb.debian.org_debian-security_dists_bookworm-security_InRelease /var/lib/apt/lists/deb.debian.org_debian-security_dists_bookworm-security_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/deb.debian.org_debian_dists_bookworm-updates_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_bookworm-updates_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/deb.debian.org_debian_dists_bookworm_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_bookworm_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/lock /var/lib/apt/lists/partial
#6 DONE 4.4s

#7 exporting to image
#7 exporting layers 0.0s done
#7 writing image sha256:2d1742e5c33b4d2344565af53035fd3444acb5d8c852c614b0a004925b535470 done
#7 naming to docker.io/library/sentry-self-hosted-jq-local done
#7 DONE 0.0s
latest: Pulling from getsentry/sentry-cli
f7dab3ab2d6e: Pulling fs layer
8bd10b77a777: Pulling fs layer
80aeafe5b1af: Pulling fs layer
e75529525eaf: Pulling fs layer
16935667c850: Pulling fs layer
e75529525eaf: Waiting
16935667c850: Waiting
8bd10b77a777: Verifying Checksum
8bd10b77a777: Download complete
80aeafe5b1af: Download complete
f7dab3ab2d6e: Verifying Checksum
f7dab3ab2d6e: Download complete
e75529525eaf: Verifying Checksum
e75529525eaf: Download complete
f7dab3ab2d6e: Pull complete
8bd10b77a777: Pull complete
16935667c850: Verifying Checksum
16935667c850: Download complete
80aeafe5b1af: Pull complete
e75529525eaf: Pull complete
16935667c850: Pull complete
Digest: sha256:4d9bc98acd40c955ba12f87d839ddcdaf1569a8beeb1786ab2184d6662b2f604
Status: Downloaded newer image for getsentry/sentry-cli:latest
docker.io/getsentry/sentry-cli:latest

▶ Checking for latest commit ...
skipped

▶ Checking minimum requirements ...
Found Docker version 24.0.4
Found Docker Compose version 2.19.1
Unable to find image 'busybox:latest' locally
latest: Pulling from library/busybox
9ad63333ebc9: Pulling fs layer
9ad63333ebc9: Verifying Checksum
9ad63333ebc9: Download complete
9ad63333ebc9: Pull complete
Digest: sha256:6d9ac9237a84afe1516540f40a0fafdc86859b2141954b4d643af7066d598b74
Status: Downloaded newer image for busybox:latest

▶ Turning things off ...
Container sentry_onpremise-post-process-forwarder-errors-1 Stopping
Container sentry_onpremise-events-consumer-1 Stopping
Container sentry_onpremise-post-process-forwarder-issue-platform-1 Stopping
Container sentry_onpremise-subscription-consumer-transactions-1 Stopping
Container sentry_onpremise-snuba-metrics-consumer-1 Stopping
Container sentry_onpremise-ingest-replay-recordings-1 Stopping
Container sentry_onpremise-ingest-occurrences-1 Stopping
Container sentry_onpremise-transactions-consumer-1 Stopping
Container sentry_onpremise-metrics-consumer-1 Stopping
Container sentry_onpremise-nginx-1 Stopping
Container sentry_onpremise-cron-1 Stopping
Container sentry_onpremise-snuba-subscription-consumer-metrics-1 Stopping
Container sentry_onpremise-snuba-replays-consumer-1 Stopping
Container sentry_onpremise-subscription-consumer-metrics-1 Stopping
Container sentry_onpremise-generic-metrics-consumer-1 Stopping
Container sentry_onpremise-snuba-generic-metrics-sets-consumer-1 Stopping
Container sentry_onpremise-snuba-profiling-profiles-consumer-1 Stopping
Container sentry_onpremise-subscription-consumer-generic-metrics-1 Stopping
Container sentry_onpremise-vroom-cleanup-1 Stopping
Container sentry_onpremise-geoipupdate-1 Stopping
Container sentry_onpremise-post-process-forwarder-transactions-1 Stopping
Container sentry_onpremise-ingest-profiles-1 Stopping
Container sentry_onpremise-subscription-consumer-events-1 Stopping
Container sentry_onpremise-worker-1 Stopping
Container sentry_onpremise-symbolicator-cleanup-1 Stopping
Container sentry_onpremise-attachments-consumer-1 Stopping
Container sentry_onpremise-billing-metrics-consumer-1 Stopping
Container sentry_onpremise-snuba-generic-metrics-distributions-consumer-1 Stopping
Container sentry_onpremise-snuba-generic-metrics-counters-consumer-1 Stopping
Container sentry_onpremise-sentry-cleanup-1 Stopping
Container sentry_onpremise-snuba-profiling-functions-consumer-1 Stopping
Container sentry_onpremise-snuba-issue-occurrence-consumer-1 Stopping
Container sentry_onpremise-geoipupdate-1 Stopped
Container sentry_onpremise-geoipupdate-1 Removing
Container sentry_onpremise-geoipupdate-1 Removed
Container sentry_onpremise-nginx-1 Stopped
Container sentry_onpremise-nginx-1 Removing
Container sentry_onpremise-nginx-1 Removed
Container sentry_onpremise-relay-1 Stopping
Container sentry_onpremise-cron-1 Stopped
Container sentry_onpremise-cron-1 Removing
Container sentry_onpremise-cron-1 Removed
Container sentry_onpremise-snuba-generic-metrics-distributions-consumer-1 Stopped
Container sentry_onpremise-snuba-generic-metrics-distributions-consumer-1 Removing
Container sentry_onpremise-snuba-metrics-consumer-1 Stopped
Container sentry_onpremise-snuba-metrics-consumer-1 Removing
Container sentry_onpremise-snuba-generic-metrics-distributions-consumer-1 Removed
Container sentry_onpremise-snuba-metrics-consumer-1 Removed
Container sentry_onpremise-snuba-profiling-profiles-consumer-1 Stopped
Container sentry_onpremise-snuba-profiling-profiles-consumer-1 Removing
Container sentry_onpremise-snuba-profiling-profiles-consumer-1 Removed
Container sentry_onpremise-snuba-issue-occurrence-consumer-1 Stopped
Container sentry_onpremise-snuba-issue-occurrence-consumer-1 Removing
Container sentry_onpremise-worker-1 Stopped
Container sentry_onpremise-worker-1 Removing
Container sentry_onpremise-snuba-issue-occurrence-consumer-1 Removed
Container sentry_onpremise-snuba-profiling-functions-consumer-1 Stopped
Container sentry_onpremise-snuba-profiling-functions-consumer-1 Removing
Container sentry_onpremise-worker-1 Removed
Container sentry_onpremise-snuba-profiling-functions-consumer-1 Removed
Container sentry_onpremise-snuba-generic-metrics-sets-consumer-1 Stopped
Container sentry_onpremise-snuba-generic-metrics-sets-consumer-1 Removing
Container sentry_onpremise-snuba-generic-metrics-sets-consumer-1 Removed
Container sentry_onpremise-snuba-generic-metrics-counters-consumer-1 Stopped
Container sentry_onpremise-snuba-generic-metrics-counters-consumer-1 Removing
Container sentry_onpremise-snuba-generic-metrics-counters-consumer-1 Removed
Container sentry_onpremise-snuba-replays-consumer-1 Stopped
Container sentry_onpremise-snuba-replays-consumer-1 Removing
Container sentry_onpremise-snuba-replays-consumer-1 Removed
Container sentry_onpremise-snuba-subscription-consumer-metrics-1 Stopped
Container sentry_onpremise-snuba-subscription-consumer-metrics-1 Removing
Container sentry_onpremise-snuba-subscription-consumer-metrics-1 Removed
Container sentry_onpremise-post-process-forwarder-errors-1 Stopped
Container sentry_onpremise-post-process-forwarder-errors-1 Removing
Container sentry_onpremise-post-process-forwarder-errors-1 Removed
Container sentry_onpremise-events-consumer-1 Stopped
Container sentry_onpremise-events-consumer-1 Removing
Container sentry_onpremise-events-consumer-1 Removed
Container sentry_onpremise-ingest-profiles-1 Stopped
Container sentry_onpremise-ingest-profiles-1 Removing
Container sentry_onpremise-ingest-profiles-1 Removed
Container sentry_onpremise-post-process-forwarder-transactions-1 Stopped
Container sentry_onpremise-post-process-forwarder-transactions-1 Removing
Container sentry_onpremise-post-process-forwarder-transactions-1 Removed
Container sentry_onpremise-subscription-consumer-transactions-1 Stopped
Container sentry_onpremise-subscription-consumer-transactions-1 Removing
Container sentry_onpremise-subscription-consumer-transactions-1 Removed
Container sentry_onpremise-post-process-forwarder-issue-platform-1 Stopped
Container sentry_onpremise-post-process-forwarder-issue-platform-1 Removing
Container sentry_onpremise-post-process-forwarder-issue-platform-1 Removed
Container sentry_onpremise-transactions-consumer-1 Stopped
Container sentry_onpremise-transactions-consumer-1 Removing
Container sentry_onpremise-transactions-consumer-1 Removed
Container sentry_onpremise-relay-1 Stopped
Container sentry_onpremise-relay-1 Removing
Container sentry_onpremise-relay-1 Removed
Container sentry_onpremise-web-1 Stopping
Container sentry_onpremise-metrics-consumer-1 Stopped
Container sentry_onpremise-metrics-consumer-1 Removing
Container sentry_onpremise-metrics-consumer-1 Removed
Container sentry_onpremise-ingest-occurrences-1 Stopped
Container sentry_onpremise-ingest-occurrences-1 Removing
Container sentry_onpremise-ingest-occurrences-1 Removed
Container sentry_onpremise-subscription-consumer-generic-metrics-1 Stopped
Container sentry_onpremise-subscription-consumer-generic-metrics-1 Removing
Container sentry_onpremise-subscription-consumer-generic-metrics-1 Removed
Container sentry_onpremise-ingest-replay-recordings-1 Stopped
Container sentry_onpremise-ingest-replay-recordings-1 Removing
Container sentry_onpremise-ingest-replay-recordings-1 Removed
Container sentry_onpremise-billing-metrics-consumer-1 Stopped
Container sentry_onpremise-billing-metrics-consumer-1 Removing
Container sentry_onpremise-billing-metrics-consumer-1 Removed
Container sentry_onpremise-subscription-consumer-events-1 Stopped
Container sentry_onpremise-subscription-consumer-events-1 Removing
Container sentry_onpremise-subscription-consumer-events-1 Removed
Container sentry_onpremise-attachments-consumer-1 Stopped
Container sentry_onpremise-attachments-consumer-1 Removing
Container sentry_onpremise-attachments-consumer-1 Removed
Container sentry_onpremise-subscription-consumer-metrics-1 Stopped
Container sentry_onpremise-subscription-consumer-metrics-1 Removing
Container sentry_onpremise-subscription-consumer-metrics-1 Removed
Container sentry_onpremise-generic-metrics-consumer-1 Stopped
Container sentry_onpremise-generic-metrics-consumer-1 Removing
Container sentry_onpremise-generic-metrics-consumer-1 Removed
Container sentry_onpremise-web-1 Stopped
Container sentry_onpremise-web-1 Removing
Container sentry_onpremise-web-1 Removed
Container sentry_onpremise-symbolicator-cleanup-1 Stopped
Container sentry_onpremise-symbolicator-cleanup-1 Removing
Container sentry_onpremise-symbolicator-cleanup-1 Removed
Container sentry_onpremise-vroom-cleanup-1 Stopped
Container sentry_onpremise-vroom-cleanup-1 Removing
Container sentry_onpremise-vroom-cleanup-1 Removed
Container sentry_onpremise-sentry-cleanup-1 Stopped
Container sentry_onpremise-sentry-cleanup-1 Removing
Container sentry_onpremise-sentry-cleanup-1 Removed
Container sentry_onpremise-snuba-transactions-consumer-1 Stopping
Container sentry_onpremise-memcached-1 Stopping
Container sentry_onpremise-snuba-subscription-consumer-events-1 Stopping
Container sentry_onpremise-snuba-consumer-1 Stopping
Container sentry_onpremise-smtp-1 Stopping
Container sentry_onpremise-vroom-1 Stopping
Container sentry_onpremise-snuba-outcomes-consumer-1 Stopping
Container sentry_onpremise-symbolicator-1 Stopping
Container sentry_onpremise-postgres-1 Stopping
Container sentry_onpremise-snuba-replacer-1 Stopping
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Stopping
Container sentry_onpremise-snuba-api-1 Stopping
Container sentry_onpremise-symbolicator-1 Stopped
Container sentry_onpremise-symbolicator-1 Removing
Container sentry_onpremise-symbolicator-1 Removed
Container sentry_onpremise-smtp-1 Stopped
Container sentry_onpremise-smtp-1 Removing
Container sentry_onpremise-smtp-1 Removed
Container sentry_onpremise-vroom-1 Stopped
Container sentry_onpremise-vroom-1 Removing
Container sentry_onpremise-vroom-1 Removed
Container sentry_onpremise-postgres-1 Stopped
Container sentry_onpremise-postgres-1 Removing
Container sentry_onpremise-postgres-1 Removed
Container sentry_onpremise-memcached-1 Stopped
Container sentry_onpremise-memcached-1 Removing
Container sentry_onpremise-memcached-1 Removed
Container sentry_onpremise-snuba-api-1 Stopped
Container sentry_onpremise-snuba-api-1 Removing
Container sentry_onpremise-snuba-api-1 Removed
Container sentry_onpremise-snuba-transactions-consumer-1 Stopped
Container sentry_onpremise-snuba-transactions-consumer-1 Removing
Container sentry_onpremise-snuba-transactions-consumer-1 Removed
Container sentry_onpremise-snuba-outcomes-consumer-1 Stopped
Container sentry_onpremise-snuba-outcomes-consumer-1 Removing
Container sentry_onpremise-snuba-consumer-1 Stopped
Container sentry_onpremise-snuba-consumer-1 Removing
Container sentry_onpremise-snuba-outcomes-consumer-1 Removed
Container sentry_onpremise-snuba-consumer-1 Removed
Container sentry_onpremise-snuba-replacer-1 Stopped
Container sentry_onpremise-snuba-replacer-1 Removing
Container sentry_onpremise-snuba-replacer-1 Removed
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Stopped
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Removing
Container sentry_onpremise-snuba-subscription-consumer-events-1 Stopped
Container sentry_onpremise-snuba-subscription-consumer-events-1 Removing
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Removed
Container sentry_onpremise-snuba-subscription-consumer-events-1 Removed
Container sentry_onpremise-redis-1 Stopping
Container sentry_onpremise-clickhouse-1 Stopping
Container sentry_onpremise-kafka-1 Stopping
Container sentry_onpremise-redis-1 Stopped
Container sentry_onpremise-redis-1 Removing
Container sentry_onpremise-redis-1 Removed
Container sentry_onpremise-clickhouse-1 Stopped
Container sentry_onpremise-clickhouse-1 Removing
Container sentry_onpremise-clickhouse-1 Removed
Container sentry_onpremise-kafka-1 Stopped
Container sentry_onpremise-kafka-1 Removing
Container sentry_onpremise-kafka-1 Removed
Container sentry_onpremise-zookeeper-1 Stopping
Container sentry_onpremise-zookeeper-1 Stopped
Container sentry_onpremise-zookeeper-1 Removing
Container sentry_onpremise-zookeeper-1 Removed
Container sentry_onpremise-snuba-sessions-consumer-1 Stopping
Container sentry_onpremise-snuba-subscription-consumer-sessions-1 Stopping
Container sentry_onpremise-snuba-sessions-consumer-1 Stopped
Container sentry_onpremise-snuba-sessions-consumer-1 Removing
Container sentry_onpremise-snuba-sessions-consumer-1 Removed
Container sentry_onpremise-snuba-subscription-consumer-sessions-1 Stopped
Container sentry_onpremise-snuba-subscription-consumer-sessions-1 Removing
Container sentry_onpremise-snuba-subscription-consumer-sessions-1 Removed
Image vroom-cleanup-self-hosted-local:latest Removing
Image sentry-self-hosted-local:latest Removing
Image clickhouse-self-hosted-local:latest Removing
Image symbolicator-cleanup-self-hosted-local:latest Removing
Image sentry-cleanup-self-hosted-local:latest Removing
Network sentry_onpremise_default Removing
Image vroom-cleanup-self-hosted-local:latest Removed
Image sentry-self-hosted-local:latest Removed
Image symbolicator-cleanup-self-hosted-local:latest Removed
Image sentry-cleanup-self-hosted-local:latest Removed
Image clickhouse-self-hosted-local:latest Removed
Network sentry_onpremise_default Removed

▶ Creating volumes for persistent storage ...
Created sentry-clickhouse.
Created sentry-data.
Created sentry-kafka.
Created sentry-postgres.
Created sentry-redis.
Created sentry-symbolicator.
Created sentry-zookeeper.

▶ Ensuring files from examples ...
sentry/sentry.conf.py already exists, skipped creation.
sentry/config.yml already exists, skipped creation.
symbolicator/config.yml already exists, skipped creation.

▶ Ensuring Relay credentials ...
relay/config.yml already exists, skipped creation.
relay/credentials.json already exists, skipped creation.

▶ Generating secret key ...

▶ Fetching and updating Docker images ...
nightly: Pulling from getsentry/sentry
0e0969fcaa82: Pulling fs layer
c9f85b902acc: Pulling fs layer
61719aa8a71a: Pulling fs layer
c2fbc87c1b9a: Pulling fs layer
49fbddf4290c: Pulling fs layer
b702a1075742: Pulling fs layer
5c52394a2b54: Pulling fs layer
fcd3e8ce9778: Pulling fs layer
a20828b99643: Pulling fs layer
4335f33e42aa: Pulling fs layer
3777d6b2f6ae: Pulling fs layer
0737e9735722: Pulling fs layer
6f8d9f5f68f3: Pulling fs layer
765878162c9e: Pulling fs layer
49fbddf4290c: Waiting
c2fbc87c1b9a: Waiting
5c52394a2b54: Waiting
fcd3e8ce9778: Waiting
b702a1075742: Waiting
0737e9735722: Waiting
a20828b99643: Waiting
6f8d9f5f68f3: Waiting
765878162c9e: Waiting
4335f33e42aa: Waiting
c9f85b902acc: Verifying Checksum
c9f85b902acc: Download complete
61719aa8a71a: Download complete
c2fbc87c1b9a: Download complete
0e0969fcaa82: Verifying Checksum
0e0969fcaa82: Download complete
49fbddf4290c: Download complete
b702a1075742: Download complete
fcd3e8ce9778: Verifying Checksum
fcd3e8ce9778: Download complete
5c52394a2b54: Verifying Checksum
5c52394a2b54: Download complete
3777d6b2f6ae: Verifying Checksum
3777d6b2f6ae: Download complete
0737e9735722: Download complete
4335f33e42aa: Verifying Checksum
4335f33e42aa: Download complete
6f8d9f5f68f3: Verifying Checksum
6f8d9f5f68f3: Download complete
765878162c9e: Verifying Checksum
765878162c9e: Download complete
a20828b99643: Verifying Checksum
a20828b99643: Download complete
0e0969fcaa82: Pull complete
c9f85b902acc: Pull complete
61719aa8a71a: Pull complete
c2fbc87c1b9a: Pull complete
49fbddf4290c: Pull complete
b702a1075742: Pull complete
5c52394a2b54: Pull complete
fcd3e8ce9778: Pull complete
a20828b99643: Pull complete
4335f33e42aa: Pull complete
3777d6b2f6ae: Pull complete
0737e9735722: Pull complete
6f8d9f5f68f3: Pull complete
765878162c9e: Pull complete
Digest: sha256:aa4560ece621775159dfd5635a2c47a927a4da39bddc7349a6fd75d9e172559c
Status: Downloaded newer image for getsentry/sentry:nightly
docker.io/getsentry/sentry:nightly

▶ Building and tagging Docker images ...

#1 [web internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [web internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [web internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [web internal] load build context
#4 transferring context: 14.50kB done
#4 DONE 0.0s

#5 [web 1/4] FROM docker.io/getsentry/sentry:nightly
#5 DONE 0.1s

#6 [web 2/4] COPY . /usr/src/sentry
#6 DONE 0.3s

#7 [web 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 DONE 0.2s

#8 [web 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 0.304 sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image
#8 0.796 Collecting sentry-auth-gitlab@ https://github.com/cirmaciu/sentry-auth-gitlab/archive/master.zip#egg=sentry-auth-gitlab
#8 1.042 Downloading https://github.com/cirmaciu/sentry-auth-gitlab/archive/master.zip
#8 1.049 - 14.9 kB 5.5 MB/s 0:00:00
#8 1.056 Preparing metadata (setup.py): started
#8 1.366 Preparing metadata (setup.py): finished with status 'done'
#8 1.371 Requirement already satisfied: sentry in /usr/local/lib/python3.10/site-packages (from sentry-auth-gitlab@ https://github.com/cirmaciu/sentry-auth-gitlab/archive/master.zip#egg=sentry-auth-gitlab->-r /usr/src/sentry/requirements.txt (line 3)) (24.2.0.dev0)
#8 1.373 Building wheels for collected packages: sentry-auth-gitlab
#8 1.374 Building wheel for sentry-auth-gitlab (setup.py): started
#8 1.800 Building wheel for sentry-auth-gitlab (setup.py): finished with status 'done'
#8 1.801 Created wheel for sentry-auth-gitlab: filename=sentry_auth_gitlab-0.1.0-py2.py3-none-any.whl size=8361 sha256=8718e2acc0ef5d2a4c8fdee49a5f3cdbb2f5fb296b41e9c72690eb23395d37ca
#8 1.801 Stored in directory: /tmp/pip-ephem-wheel-cache-8drfyqpz/wheels/6a/d7/6e/4e403eb5923fdf78269bd4a2633293b7e5ef122b5ccee3395d
#8 1.804 Successfully built sentry-auth-gitlab
#8 2.731 Installing collected packages: sentry-auth-gitlab
#8 2.786 Successfully installed sentry-auth-gitlab-0.1.0
#8 2.786 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#8 DONE 2.9s

#9 [web] exporting to image
#9 exporting layers 0.0s done
#9 writing image sha256:812878604ddbe5036272079b930e47e0fef7dc431448f0ab68dcc54660a50459 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [clickhouse internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [clickhouse internal] load build definition from Dockerfile
#2 transferring dockerfile: 71B done
#2 DONE 0.0s

#3 [clickhouse auth] altinity/clickhouse-server:pull token for registry-1.docker.io
#3 DONE 0.0s

#4 [clickhouse internal] load metadata for docker.io/altinity/clickhouse-server:21.8.13.1.altinitystable
#4 DONE 0.3s

#5 [clickhouse 1/1] FROM docker.io/altinity/clickhouse-server:21.8.13.1.altinitystable@sha256:125d2ea49c298515c46784d202a2bd4dde05157c85a76517afc2567f262ab335
#5 resolve docker.io/altinity/clickhouse-server:21.8.13.1.altinitystable@sha256:125d2ea49c298515c46784d202a2bd4dde05157c85a76517afc2567f262ab335 done
#5 sha256:28384a2134da44ed6b7759bd88eac97b107ff6f15fddcf0ea82c744a0687fe00 7.37kB / 7.37kB done
#5 sha256:125d2ea49c298515c46784d202a2bd4dde05157c85a76517afc2567f262ab335 1.78kB / 1.78kB done
#5 sha256:ea362f368469f909a95f9a6e54ebe0121ce0a8e3c30583dd9c5fb35b14544dec 9.44MB / 28.57MB 0.1s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 1.05MB / 203.39MB 0.1s
#5 sha256:fbac3df9a8f6dd77f4c8ccf7875e14e8e3855da3588f2246ac351cafd6bcf779 863.47kB / 863.47kB 0.1s
#5 sha256:ea362f368469f909a95f9a6e54ebe0121ce0a8e3c30583dd9c5fb35b14544dec 28.31MB / 28.57MB 0.2s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 12.58MB / 203.39MB 0.2s
#5 sha256:fbac3df9a8f6dd77f4c8ccf7875e14e8e3855da3588f2246ac351cafd6bcf779 863.47kB / 863.47kB 0.1s done
#5 sha256:f6eb5ef541f1723f2561711160eb7c57c04192b6b24538f6ba335b62d070e190 0B / 367B 0.2s
#5 sha256:1b4e2546b533e8f43b0b0792c25c9faf21c33691c94984061522c6211411dcbb 149B / 149B 0.1s done
#5 extracting sha256:ea362f368469f909a95f9a6e54ebe0121ce0a8e3c30583dd9c5fb35b14544dec
#5 sha256:ea362f368469f909a95f9a6e54ebe0121ce0a8e3c30583dd9c5fb35b14544dec 28.57MB / 28.57MB 0.2s done
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 28.63MB / 203.39MB 0.3s
#5 sha256:f6eb5ef541f1723f2561711160eb7c57c04192b6b24538f6ba335b62d070e190 367B / 367B 0.2s done
#5 sha256:5103b83a0bb1276f2447f53aac697c602f4bb248b4c8c9ceacd44ab8eb16c669 502.78kB / 502.78kB 0.3s done
#5 sha256:0b55d80e9b3f2280b902efb1c103da8409bb6faaf243fdff8c49ac91b43a3501 1.94kB / 1.94kB 0.3s done
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 46.14MB / 203.39MB 0.4s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 63.96MB / 203.39MB 0.5s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 81.79MB / 203.39MB 0.6s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 121.63MB / 203.39MB 0.8s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 139.46MB / 203.39MB 0.9s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 159.38MB / 203.39MB 1.0s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 180.36MB / 203.39MB 1.1s
#5 sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 203.39MB / 203.39MB 1.3s done
#5 extracting sha256:ea362f368469f909a95f9a6e54ebe0121ce0a8e3c30583dd9c5fb35b14544dec 1.2s done
#5 extracting sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 0.1s
#5 extracting sha256:b6f27831e97f47b195f98f7a763bf0de2b06ad6ae4f415ed423f78f1d9e7d4d6 4.9s done
#5 extracting sha256:fbac3df9a8f6dd77f4c8ccf7875e14e8e3855da3588f2246ac351cafd6bcf779
#5 extracting sha256:fbac3df9a8f6dd77f4c8ccf7875e14e8e3855da3588f2246ac351cafd6bcf779 0.0s done
#5 extracting sha256:1b4e2546b533e8f43b0b0792c25c9faf21c33691c94984061522c6211411dcbb done
#5 extracting sha256:f6eb5ef541f1723f2561711160eb7c57c04192b6b24538f6ba335b62d070e190 done
#5 extracting sha256:0b55d80e9b3f2280b902efb1c103da8409bb6faaf243fdff8c49ac91b43a3501 done
#5 extracting sha256:5103b83a0bb1276f2447f53aac697c602f4bb248b4c8c9ceacd44ab8eb16c669 done
#5 DONE 6.7s

#6 [clickhouse] exporting to image
#6 exporting layers done
#6 writing image sha256:d68afa73092894b1c9f393e5c9ee497c260d68aaffd6b866fe307ea30a2c2504 done
#6 naming to docker.io/library/clickhouse-self-hosted-local done
#6 DONE 0.0s
#1 [attachments-consumer internal] load build definition from Dockerfile
#1 transferring dockerfile: 463B done
#1 DONE 0.0s

#2 [attachments-consumer internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [attachments-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [attachments-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [attachments-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [attachments-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [attachments-consumer 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [attachments-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [attachments-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:1b427adb8e6e7c75354e6e93d0d036086c75d8d3575c4b729b9794a2e4a82304 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [billing-metrics-consumer internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [billing-metrics-consumer internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [billing-metrics-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [billing-metrics-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [billing-metrics-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [billing-metrics-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [billing-metrics-consumer 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [billing-metrics-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [billing-metrics-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:a738a30059a9c99e1702c2ba7e7553e9e97bd44a1bee436f6d77b83ef5e07c25 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [cron internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [cron internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [cron internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [cron 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [cron internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [cron 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [cron 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [cron 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [cron] exporting to image
#9 exporting layers done
#9 writing image sha256:92454092a5a13049b20b090cef8abb749e0a6f9bf75d9bb12315629f9da7b160 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [events-consumer internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [events-consumer internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [events-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [events-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [events-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [events-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [events-consumer 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [events-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [events-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:bc0a299cd0586c70bc9620f0847057daa8360ac9247123bd72b1f3b7789b1907 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [generic-metrics-consumer internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [generic-metrics-consumer internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [generic-metrics-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [generic-metrics-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [generic-metrics-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [generic-metrics-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [generic-metrics-consumer 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [generic-metrics-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [generic-metrics-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:d385c8622cd0eb7e5795e0e010a9505514544d632bc73e5ba30eb770e031a168 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [ingest-monitors internal] load build definition from Dockerfile
#1 transferring dockerfile: 463B done
#1 DONE 0.0s

#2 [ingest-monitors internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [ingest-monitors internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [ingest-monitors 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [ingest-monitors internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [ingest-monitors 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [ingest-monitors 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [ingest-monitors 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [ingest-monitors] exporting to image
#9 exporting layers done
#9 writing image sha256:2344f2e4ae95c888f3642fc555d5f23b6399a5bdbd1c60c63e37d3fbcc185731 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [ingest-occurrences internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [ingest-occurrences internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [ingest-occurrences internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [ingest-occurrences 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [ingest-occurrences internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [ingest-occurrences 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [ingest-occurrences 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [ingest-occurrences 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [ingest-occurrences] exporting to image
#9 exporting layers done
#9 writing image sha256:33477ebfd885b4791b89ee4d71a585c3309aa207b37691d980cc4ac1539fd127 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [ingest-profiles internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [ingest-profiles internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [ingest-profiles internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [ingest-profiles 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [ingest-profiles internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [ingest-profiles 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [ingest-profiles 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [ingest-profiles 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [ingest-profiles] exporting to image
#9 exporting layers done
#9 writing image sha256:5af01355fd9770c3dbabd0bdcfabe1adfaf43234fb0f0e381eeb139aa3fe61fe done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [ingest-replay-recordings internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [ingest-replay-recordings internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [ingest-replay-recordings internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [ingest-replay-recordings 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [ingest-replay-recordings internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [ingest-replay-recordings 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [ingest-replay-recordings 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [ingest-replay-recordings 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [ingest-replay-recordings] exporting to image
#9 exporting layers done
#9 writing image sha256:44bec609f63af4a7fa6b9ac3278149ecdd0bc6da9be31c4862c5ea1e6bd2db67 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [metrics-consumer internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [metrics-consumer internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [metrics-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [metrics-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [metrics-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [metrics-consumer 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [metrics-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [metrics-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [metrics-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:ac48df76cad681e67a4fb30f1c0399d8783dfc8aee77e1a4e3aed3de0df2e7e0 0.0s done
#9 naming to docker.io/library/sentry-self-hosted-local 0.0s done
#9 DONE 0.1s
#1 [web internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [web internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [web internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [web 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [web internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [web 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [web 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [web 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [web] exporting to image
#9 exporting layers done
#9 writing image sha256:812878604ddbe5036272079b930e47e0fef7dc431448f0ab68dcc54660a50459 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [post-process-forwarder-errors internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [post-process-forwarder-errors internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [post-process-forwarder-errors internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [post-process-forwarder-errors 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [post-process-forwarder-errors internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [post-process-forwarder-errors 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [post-process-forwarder-errors 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [post-process-forwarder-errors 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [post-process-forwarder-errors] exporting to image
#9 exporting layers done
#9 writing image sha256:047654d3d8a2af6614980336a8100a74615226ea9197d91574cd8d20934252cd done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [post-process-forwarder-issue-platform internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [post-process-forwarder-issue-platform internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [post-process-forwarder-issue-platform internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [post-process-forwarder-issue-platform 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [post-process-forwarder-issue-platform internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [post-process-forwarder-issue-platform 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [post-process-forwarder-issue-platform 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [post-process-forwarder-issue-platform 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [post-process-forwarder-issue-platform] exporting to image
#9 exporting layers done
#9 writing image sha256:a3e71e48bfed846f4fa0617332bd31399187e424a4889eb076178579f334ebb2 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [post-process-forwarder-transactions internal] load build definition from Dockerfile
#1 transferring dockerfile: 463B done
#1 DONE 0.0s

#2 [post-process-forwarder-transactions internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [post-process-forwarder-transactions internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [post-process-forwarder-transactions 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [post-process-forwarder-transactions internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [post-process-forwarder-transactions 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [post-process-forwarder-transactions 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [post-process-forwarder-transactions 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [post-process-forwarder-transactions] exporting to image
#9 exporting layers done
#9 writing image sha256:41dd5a808cea92b339715241c98b77052d4ee84dc8875ccfa03e8355cfd9713d done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [sentry-cleanup internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [sentry-cleanup internal] load build definition from Dockerfile
#2 transferring dockerfile: 469B done
#2 DONE 0.0s

#3 [sentry-cleanup internal] load metadata for docker.io/library/sentry-self-hosted-local:latest
#3 DONE 0.0s

#4 [sentry-cleanup internal] load build context
#4 transferring context: 35B done
#4 DONE 0.0s

#5 [sentry-cleanup 1/5] FROM docker.io/library/sentry-self-hosted-local
#5 DONE 0.0s

#6 [sentry-cleanup 2/5] RUN if [ -z "${http_proxy}" ]; then echo "Acquire::http::proxy "${http_proxy}";" >> /etc/apt/apt.conf; fi
#6 DONE 0.3s

#7 [sentry-cleanup 3/5] RUN if [ -z "${https_proxy}" ]; then echo "Acquire::https::proxy "${https_proxy}";" >> /etc/apt/apt.conf; fi
#7 DONE 0.4s

#8 [sentry-cleanup 4/5] RUN apt-get update && apt-get install -y --no-install-recommends cron && rm -r /var/lib/apt/lists/*
#8 0.302 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
#8 0.317 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]
#8 0.317 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
#8 0.451 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8062 kB]
#8 0.544 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [265 kB]
#8 0.647 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB]
#8 1.746 Fetched 8554 kB in 1s (5886 kB/s)
#8 1.746 Reading package lists...
#8 2.377 Reading package lists...
#8 3.016 Building dependency tree...
#8 3.161 Reading state information...
#8 3.335 The following additional packages will be installed:
#8 3.335 sensible-utils
#8 3.336 Suggested packages:
#8 3.336 anacron logrotate checksecurity
#8 3.336 Recommended packages:
#8 3.336 default-mta | mail-transport-agent
#8 3.374 The following NEW packages will be installed:
#8 3.376 cron sensible-utils
#8 3.403 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
#8 3.403 Need to get 114 kB of archives.
#8 3.403 After this operation, 314 kB of additional disk space will be used.
#8 3.403 Get:1 http://deb.debian.org/debian bullseye/main amd64 sensible-utils all 0.0.14 [14.8 kB]
#8 3.406 Get:2 http://deb.debian.org/debian bullseye/main amd64 cron amd64 3.0pl1-137 [99.6 kB]
#8 3.526 debconf: delaying package configuration, since apt-utils is not installed
#8 3.551 Fetched 114 kB in 0s (4343 kB/s)
#8 3.563 Selecting previously unselected package sensible-utils.
(Reading database ... 7034 files and directories currently installed.)
#8 3.568 Preparing to unpack .../sensible-utils_0.0.14_all.deb ...
#8 3.570 Unpacking sensible-utils (0.0.14) ...
#8 3.588 Selecting previously unselected package cron.
#8 3.589 Preparing to unpack .../cron_3.0pl1-137_amd64.deb ...
#8 3.590 Unpacking cron (3.0pl1-137) ...
#8 3.617 Setting up sensible-utils (0.0.14) ...
#8 3.620 Setting up cron (3.0pl1-137) ...
#8 3.665 Adding group `crontab' (GID 101) ...
#8 3.675 Done.
#8 3.694 invoke-rc.d: could not determine current runlevel
#8 3.698 invoke-rc.d: policy-rc.d denied execution of start.
#8 DONE 3.9s

#9 [sentry-cleanup 5/5] COPY entrypoint.sh /entrypoint.sh
#9 DONE 0.0s

#10 [sentry-cleanup] exporting to image
#10 exporting layers 0.0s done
#10 writing image sha256:0d11db0b33f31a7b4ece846daae93f9b336ad25041d73b623a7862e8f64feff8
#10 writing image sha256:0d11db0b33f31a7b4ece846daae93f9b336ad25041d73b623a7862e8f64feff8 done
#10 naming to docker.io/library/sentry-cleanup-self-hosted-local done
#10 DONE 0.0s
#1 [subscription-consumer-events internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [subscription-consumer-events internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [subscription-consumer-events internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [subscription-consumer-events 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [subscription-consumer-events internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [subscription-consumer-events 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [subscription-consumer-events 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [subscription-consumer-events 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [subscription-consumer-events] exporting to image
#9 exporting layers done
#9 writing image sha256:03a159a48a7e1c6fff934431fdc349fb15347667ee67a2b49c32b3263e30d8b0 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [subscription-consumer-generic-metrics internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [subscription-consumer-generic-metrics internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [subscription-consumer-generic-metrics internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [subscription-consumer-generic-metrics 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [subscription-consumer-generic-metrics internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [subscription-consumer-generic-metrics 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [subscription-consumer-generic-metrics 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [subscription-consumer-generic-metrics 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [subscription-consumer-generic-metrics] exporting to image
#9 exporting layers done
#9 writing image sha256:d09b2af53e72a1acde108ef0ebab3115a1c9407bb18210f33b156eb26dcbaa9d done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [subscription-consumer-metrics internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [subscription-consumer-metrics internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [subscription-consumer-metrics internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [subscription-consumer-metrics 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [subscription-consumer-metrics internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [subscription-consumer-metrics 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [subscription-consumer-metrics 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [subscription-consumer-metrics 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [subscription-consumer-metrics] exporting to image
#9 exporting layers done
#9 writing image sha256:c8f2f5ec159ddef51f4d3ce55ca33c99ca80bd90e72464439addc64e7081d816 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [subscription-consumer-transactions internal] load build definition from Dockerfile
#1 transferring dockerfile: 463B done
#1 DONE 0.0s

#2 [subscription-consumer-transactions internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [subscription-consumer-transactions internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [subscription-consumer-transactions 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [subscription-consumer-transactions internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [subscription-consumer-transactions 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [subscription-consumer-transactions 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [subscription-consumer-transactions 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [subscription-consumer-transactions] exporting to image
#9 exporting layers done
#9 writing image sha256:c4036e46e9fe99fb4a6aa0fc927848bc0a19381128c1c2794e2664d4cc4a51f4 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [symbolicator-cleanup internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [symbolicator-cleanup internal] load build definition from Dockerfile
#2 transferring dockerfile: 469B done
#2 DONE 0.0s

#3 [symbolicator-cleanup internal] load metadata for docker.io/getsentry/symbolicator:nightly
#3 DONE 0.0s

#4 [symbolicator-cleanup internal] load build context
#4 transferring context: 35B done
#4 DONE 0.0s

#5 [symbolicator-cleanup 1/5] FROM docker.io/getsentry/symbolicator:nightly
#5 DONE 0.0s

#6 [symbolicator-cleanup 2/5] RUN if [ -z "${http_proxy}" ]; then echo "Acquire::http::proxy "${http_proxy}";" >> /etc/apt/apt.conf; fi
#6 DONE 0.2s

#7 [symbolicator-cleanup 3/5] RUN if [ -z "${https_proxy}" ]; then echo "Acquire::https::proxy "${https_proxy}";" >> /etc/apt/apt.conf; fi
#7 DONE 0.3s

#8 [symbolicator-cleanup 4/5] RUN apt-get update && apt-get install -y --no-install-recommends cron && rm -r /var/lib/apt/lists/*
#8 0.386 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.396 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
#8 0.396 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.476 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#8 0.537 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [12.7 kB]
#8 0.595 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [134 kB]
#8 1.705 Fetched 9185 kB in 1s (6904 kB/s)
#8 1.705 Reading package lists...
#8 2.400 Reading package lists...
#8 3.074 Building dependency tree...
#8 3.242 Reading state information...
#8 3.472 The following additional packages will be installed:
#8 3.473 cron-daemon-common sensible-utils
#8 3.475 Suggested packages:
#8 3.475 anacron logrotate checksecurity
#8 3.475 Recommended packages:
#8 3.475 default-mta | mail-transport-agent
#8 3.522 The following NEW packages will be installed:
#8 3.523 cron cron-daemon-common sensible-utils
#8 3.552 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
#8 3.552 Need to get 105 kB of archives.
#8 3.552 After this operation, 325 kB of additional disk space will be used.
#8 3.552 Get:1 http://deb.debian.org/debian bookworm/main amd64 cron-daemon-common all 3.0pl1-162 [12.7 kB]
#8 3.555 Get:2 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB]
#8 3.556 Get:3 http://deb.debian.org/debian bookworm/main amd64 cron amd64 3.0pl1-162 [73.1 kB]
#8 3.734 debconf: delaying package configuration, since apt-utils is not installed
#8 3.766 Fetched 105 kB in 0s (4766 kB/s)
#8 3.787 Selecting previously unselected package cron-daemon-common.
(Reading database ... 6736 files and directories currently installed.)
#8 3.825 Preparing to unpack .../cron-daemon-common_3.0pl1-162_all.deb ...
#8 3.826 Unpacking cron-daemon-common (3.0pl1-162) ...
#8 3.843 Selecting previously unselected package sensible-utils.
#8 3.844 Preparing to unpack .../sensible-utils_0.0.17+nmu1_all.deb ...
#8 3.845 Unpacking sensible-utils (0.0.17+nmu1) ...
#8 3.869 Setting up cron-daemon-common (3.0pl1-162) ...
#8 3.918 Adding group `crontab' (GID 101) ...
#8 3.929 Done.
#8 3.950 Selecting previously unselected package cron.
(Reading database ... 6781 files and directories currently installed.)
#8 3.957 Preparing to unpack .../cron_3.0pl1-162_amd64.deb ...
#8 3.960 Unpacking cron (3.0pl1-162) ...
#8 3.993 Setting up sensible-utils (0.0.17+nmu1) ...
#8 3.996 Setting up cron (3.0pl1-162) ...
#8 4.019 invoke-rc.d: could not determine current runlevel
#8 4.022 invoke-rc.d: policy-rc.d denied execution of start.
#8 DONE 4.2s

#9 [symbolicator-cleanup 5/5] COPY entrypoint.sh /entrypoint.sh
#9 DONE 0.0s

#10 [symbolicator-cleanup] exporting to image
#10 exporting layers 0.0s done
#10 writing image sha256:cdb86bec79f195a1c88958b595f203b962175af305e8cb4451f88feec24d183b done
#10 naming to docker.io/library/symbolicator-cleanup-self-hosted-local done
#10 DONE 0.0s
#1 [transactions-consumer internal] load .dockerignore
#1 transferring context: 2B done
#1 DONE 0.0s

#2 [transactions-consumer internal] load build definition from Dockerfile
#2 transferring dockerfile: 463B done
#2 DONE 0.0s

#3 [transactions-consumer internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [transactions-consumer 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [transactions-consumer internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [transactions-consumer 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#6 CACHED

#7 [transactions-consumer 2/4] COPY . /usr/src/sentry
#7 CACHED

#8 [transactions-consumer 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [transactions-consumer] exporting to image
#9 exporting layers done
#9 writing image sha256:2ecf8d8bc5cee4200870251e04c0c3364d5c900a1dfcb37056852637bd937b05 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s
#1 [vroom-cleanup internal] load build definition from Dockerfile
#1 transferring dockerfile: 469B done
#1 DONE 0.0s

#2 [vroom-cleanup internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [vroom-cleanup internal] load metadata for docker.io/getsentry/vroom:nightly
#3 DONE 0.0s

#4 [vroom-cleanup internal] load build context
#4 transferring context: 35B done
#4 DONE 0.0s

#5 [vroom-cleanup 1/5] FROM docker.io/getsentry/vroom:nightly
#5 DONE 0.0s

#6 [vroom-cleanup 2/5] RUN if [ -z "${http_proxy}" ]; then echo "Acquire::http::proxy "${http_proxy}";" >> /etc/apt/apt.conf; fi
#6 DONE 0.2s

#7 [vroom-cleanup 3/5] RUN if [ -z "${https_proxy}" ]; then echo "Acquire::https::proxy "${https_proxy}";" >> /etc/apt/apt.conf; fi
#7 DONE 0.3s

#8 [vroom-cleanup 4/5] RUN apt-get update && apt-get install -y --no-install-recommends cron && rm -r /var/lib/apt/lists/*
#8 0.409 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.421 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
#8 0.421 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.500 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
#8 0.564 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [12.7 kB]
#8 0.624 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [134 kB]
#8 1.705 Fetched 9185 kB in 1s (7062 kB/s)
#8 1.705 Reading package lists...
#8 2.376 Reading package lists...
#8 3.060 Building dependency tree...
#8 3.221 Reading state information...
#8 3.426 The following additional packages will be installed:
#8 3.427 cron-daemon-common sensible-utils
#8 3.429 Suggested packages:
#8 3.429 anacron logrotate checksecurity
#8 3.429 Recommended packages:
#8 3.429 default-mta | mail-transport-agent
#8 3.472 The following NEW packages will be installed:
#8 3.474 cron cron-daemon-common sensible-utils
#8 3.502 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
#8 3.502 Need to get 105 kB of archives.
#8 3.502 After this operation, 325 kB of additional disk space will be used.
#8 3.502 Get:1 http://deb.debian.org/debian bookworm/main amd64 cron-daemon-common all 3.0pl1-162 [12.7 kB]
#8 3.504 Get:2 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB]
#8 3.504 Get:3 http://deb.debian.org/debian bookworm/main amd64 cron amd64 3.0pl1-162 [73.1 kB]
#8 3.634 debconf: delaying package configuration, since apt-utils is not installed
#8 3.661 Fetched 105 kB in 0s (5672 kB/s)
#8 3.673 Selecting previously unselected package cron-daemon-common.
(Reading database ... 6586 files and directories currently installed.)
#8 3.680 Preparing to unpack .../cron-daemon-common_3.0pl1-162_all.deb ...
#8 3.681 Unpacking cron-daemon-common (3.0pl1-162) ...
#8 3.697 Selecting previously unselected package sensible-utils.
#8 3.697 Preparing to unpack .../sensible-utils_0.0.17+nmu1_all.deb ...
#8 3.698 Unpacking sensible-utils (0.0.17+nmu1) ...
#8 3.717 Setting up cron-daemon-common (3.0pl1-162) ...
#8 3.762 Adding group `crontab' (GID 101) ...
#8 3.770 Done.
#8 3.790 Selecting previously unselected package cron.
(Reading database ... 6631 files and directories currently installed.)
#8 3.794 Preparing to unpack .../cron_3.0pl1-162_amd64.deb ...
#8 3.797 Unpacking cron (3.0pl1-162) ...
#8 3.819 Setting up sensible-utils (0.0.17+nmu1) ...
#8 3.822 Setting up cron (3.0pl1-162) ...
#8 3.843 invoke-rc.d: could not determine current runlevel
#8 3.846 invoke-rc.d: policy-rc.d denied execution of start.
#8 DONE 4.0s

#9 [vroom-cleanup 5/5] COPY entrypoint.sh /entrypoint.sh
#9 DONE 0.0s

#10 [vroom-cleanup] exporting to image
#10 exporting layers 0.0s done
#10 writing image sha256:902429102fff6ebd4e392ed6243b03b8672633f9c454400abddde0c116dd9896 done
#10 naming to docker.io/library/vroom-cleanup-self-hosted-local done
#10 DONE 0.0s
#1 [worker internal] load build definition from Dockerfile
#1 transferring dockerfile: 463B done
#1 DONE 0.0s

#2 [worker internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.0s

#3 [worker internal] load metadata for docker.io/getsentry/sentry:nightly
#3 DONE 0.0s

#4 [worker 1/4] FROM docker.io/getsentry/sentry:nightly
#4 DONE 0.0s

#5 [worker internal] load build context
#5 transferring context: 368B done
#5 DONE 0.0s

#6 [worker 2/4] COPY . /usr/src/sentry
#6 CACHED

#7 [worker 3/4] RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then /usr/src/sentry/enhance-image.sh; fi
#7 CACHED

#8 [worker 4/4] RUN if [ -s /usr/src/sentry/requirements.txt ]; then echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image"; pip install -r /usr/src/sentry/requirements.txt; fi
#8 CACHED

#9 [worker] exporting to image
#9 exporting layers done
#9 writing image sha256:da55ab44ee22de587bd7770829b205f14fa138cd27f33b2e323b9f9bca0a5f59 done
#9 naming to docker.io/library/sentry-self-hosted-local done
#9 DONE 0.0s

Docker images built.

▶ Downloading and installing wal2json ...

▶ Bootstrapping and migrating Snuba ...
Network sentry_onpremise_default Creating
Network sentry_onpremise_default Created
Container sentry_onpremise-clickhouse-1 Creating
Container sentry_onpremise-redis-1 Creating
Container sentry_onpremise-zookeeper-1 Creating
Container sentry_onpremise-clickhouse-1 Created
Container sentry_onpremise-redis-1 Created
Container sentry_onpremise-zookeeper-1 Created
Container sentry_onpremise-kafka-1 Creating
Container sentry_onpremise-kafka-1 Created
Container sentry_onpremise-redis-1 Starting
Container sentry_onpremise-clickhouse-1 Starting
Container sentry_onpremise-zookeeper-1 Starting
Container sentry_onpremise-redis-1 Started
Container sentry_onpremise-clickhouse-1 Started
Container sentry_onpremise-zookeeper-1 Started
Container sentry_onpremise-zookeeper-1 Waiting
Container sentry_onpremise-zookeeper-1 Healthy
Container sentry_onpremise-kafka-1 Starting
Container sentry_onpremise-kafka-1 Started
2024-01-21 19:13:00,391 Initializing Snuba...
2024-01-21 19:13:04,080 Snuba initialization took 3.690478223375976s
2024-01-21 19:13:04,600 Initializing Snuba...
2024-01-21 19:13:08,146 Snuba initialization took 3.547385641373694s
2024-01-21 19:13:08,148 Attempting to connect to Kafka (attempt 0)...
2024-01-21 19:13:08,175 Connected to Kafka on attempt 0
2024-01-21 19:13:08,176 Creating Kafka topics...
2024-01-21 19:13:08,290 Topic shared-resources-usage created
Container sentry_onpremise-zookeeper-1 Running
Container sentry_onpremise-clickhouse-1 Running
Container sentry_onpremise-redis-1 Running
Container sentry_onpremise-kafka-1 Running
Container sentry_onpremise-zookeeper-1 Waiting
Container sentry_onpremise-zookeeper-1 Healthy
2024-01-21 19:13:10,590 Initializing Snuba...
2024-01-21 19:13:14,128 Snuba initialization took 3.539477194659412s
2024-01-21 19:13:14,655 Initializing Snuba...
2024-01-21 19:13:18,298 Snuba initialization took 3.644173249602318s
{"module": "snuba.migrations.runner", "event": "Running migration: 0016_materialize_new_event_counts", "severity": "info", "timestamp": "2024-01-21T19:13:18.401508Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE replays_local ADD CO...", "severity": "info", "timestamp": "2024-01-21T19:13:18.412679Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.412827Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE replays_local ADD CO...", "severity": "info", "timestamp": "2024-01-21T19:13:18.420931Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.421086Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE replays_local ADD CO...", "severity": "info", "timestamp": "2024-01-21T19:13:18.428230Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.428374Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0016_materialize_new_event_counts", "severity": "info", "timestamp": "2024-01-21T19:13:18.435173Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0017_add_component_name_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.442891Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE replays_local ADD CO...", "severity": "info", "timestamp": "2024-01-21T19:13:18.449598Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.449732Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0017_add_component_name_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.456806Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0018_sets_update_opt_default", "severity": "info", "timestamp": "2024-01-21T19:13:18.465129Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_sets_...", "severity": "info", "timestamp": "2024-01-21T19:13:18.471853Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.472031Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_sets_...", "severity": "info", "timestamp": "2024-01-21T19:13:18.478257Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.478409Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0018_sets_update_opt_default", "severity": "info", "timestamp": "2024-01-21T19:13:18.483922Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0019_counters_update_opt_default", "severity": "info", "timestamp": "2024-01-21T19:13:18.491923Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_count...", "severity": "info", "timestamp": "2024-01-21T19:13:18.498497Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.498629Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_count...", "severity": "info", "timestamp": "2024-01-21T19:13:18.504366Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.504508Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0019_counters_update_opt_default", "severity": "info", "timestamp": "2024-01-21T19:13:18.510112Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0020_sets_mv2", "severity": "info", "timestamp": "2024-01-21T19:13:18.518456Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: CREATE MATERIALIZED VIEW IF NOT ...", "severity": "info", "timestamp": "2024-01-21T19:13:18.527229Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.527384Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0020_sets_mv2", "severity": "info", "timestamp": "2024-01-21T19:13:18.531537Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0021_counters_mv2", "severity": "info", "timestamp": "2024-01-21T19:13:18.540062Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: CREATE MATERIALIZED VIEW IF NOT ...", "severity": "info", "timestamp": "2024-01-21T19:13:18.547277Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.547428Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0021_counters_mv2", "severity": "info", "timestamp": "2024-01-21T19:13:18.551534Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0022_gauges_aggregate_table", "severity": "info", "timestamp": "2024-01-21T19:13:18.561713Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: CREATE TABLE IF NOT EXISTS gener...", "severity": "info", "timestamp": "2024-01-21T19:13:18.568408Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.568540Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_gauge...", "severity": "info", "timestamp": "2024-01-21T19:13:18.573331Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.573551Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_gauge...", "severity": "info", "timestamp": "2024-01-21T19:13:18.578760Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.578912Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_gauge...", "severity": "info", "timestamp": "2024-01-21T19:13:18.584342Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.584475Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_gauge...", "severity": "info", "timestamp": "2024-01-21T19:13:18.589316Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.589660Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: ALTER TABLE generic_metric_gauge...", "severity": "info", "timestamp": "2024-01-21T19:13:18.594699Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.594829Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0022_gauges_aggregate_table", "severity": "info", "timestamp": "2024-01-21T19:13:18.599854Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0023_gauges_raw_table", "severity": "info", "timestamp": "2024-01-21T19:13:18.609245Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: CREATE TABLE IF NOT EXISTS gener...", "severity": "info", "timestamp": "2024-01-21T19:13:18.616212Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.616355Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0023_gauges_raw_table", "severity": "info", "timestamp": "2024-01-21T19:13:18.620925Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0024_gauges_mv", "severity": "info", "timestamp": "2024-01-21T19:13:18.629089Z"}
{"module": "snuba.migrations.operations", "event": "Executing op: CREATE MATERIALIZED VIEW IF NOT ...", "severity": "info", "timestamp": "2024-01-21T19:13:18.635532Z"}
{"module": "snuba.migrations.operations", "event": "Executing on local node: clickhouse:9000", "severity": "info", "timestamp": "2024-01-21T19:13:18.635664Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0024_gauges_mv", "severity": "info", "timestamp": "2024-01-21T19:13:18.639565Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0025_counters_add_raw_tags_hash_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.647548Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0025_counters_add_raw_tags_hash_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.654300Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0026_gauges_add_raw_tags_hash_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.662454Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0026_gauges_add_raw_tags_hash_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.668930Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0027_sets_add_raw_tags_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.676617Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0027_sets_add_raw_tags_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.683464Z"}
{"module": "snuba.migrations.runner", "event": "Running migration: 0028_distributions_add_indexed_tags_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.691052Z"}
{"module": "snuba.migrations.runner", "event": "Finished: 0028_distributions_add_indexed_tags_column", "severity": "info", "timestamp": "2024-01-21T19:13:18.697487Z"}
Finished running migrations

▶ Creating additional Kafka topics ...

▶ Ensuring proper PostgreSQL version ...

▶ Setting up / migrating database ...
Container sentry_onpremise-postgres-1 Creating
Container sentry_onpremise-symbolicator-1 Creating
Container sentry_onpremise-smtp-1 Creating
Container sentry_onpremise-redis-1 Running
Container sentry_onpremise-zookeeper-1 Running
Container sentry_onpremise-clickhouse-1 Running
Container sentry_onpremise-memcached-1 Creating
Container sentry_onpremise-kafka-1 Running
Container sentry_onpremise-snuba-consumer-1 Creating
Container sentry_onpremise-snuba-subscription-consumer-events-1 Creating
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Creating
Container sentry_onpremise-snuba-api-1 Creating
Container sentry_onpremise-vroom-1 Creating
Container sentry_onpremise-snuba-replacer-1 Creating
Container sentry_onpremise-snuba-transactions-consumer-1 Creating
Container sentry_onpremise-snuba-outcomes-consumer-1 Creating
Container sentry_onpremise-vroom-1 Created
Container sentry_onpremise-snuba-outcomes-consumer-1 Created
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Created
Container sentry_onpremise-memcached-1 Created
Container sentry_onpremise-symbolicator-1 Created
Container sentry_onpremise-snuba-replacer-1 Created
Container sentry_onpremise-snuba-api-1 Created
Container sentry_onpremise-snuba-consumer-1 Created
Container sentry_onpremise-snuba-subscription-consumer-events-1 Created
Container sentry_onpremise-smtp-1 Created
Container sentry_onpremise-snuba-transactions-consumer-1 Created
Container sentry_onpremise-postgres-1 Created
Container sentry_onpremise-zookeeper-1 Waiting
Container sentry_onpremise-smtp-1 Starting
Container sentry_onpremise-postgres-1 Starting
Container sentry_onpremise-symbolicator-1 Starting
Container sentry_onpremise-memcached-1 Starting
Container sentry_onpremise-symbolicator-1 Started
Container sentry_onpremise-smtp-1 Started
Container sentry_onpremise-zookeeper-1 Healthy
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-kafka-1 Waiting
Container sentry_onpremise-redis-1 Waiting
Container sentry_onpremise-clickhouse-1 Waiting
Container sentry_onpremise-memcached-1 Started
Container sentry_onpremise-postgres-1 Started
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-vroom-1 Starting
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-snuba-subscription-consumer-events-1 Starting
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-snuba-consumer-1 Starting
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Starting
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-snuba-api-1 Starting
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-redis-1 Healthy
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-snuba-replacer-1 Starting
Container sentry_onpremise-clickhouse-1 Healthy
Container sentry_onpremise-snuba-transactions-consumer-1 Starting
Container sentry_onpremise-kafka-1 Healthy
Container sentry_onpremise-snuba-outcomes-consumer-1 Starting
Container sentry_onpremise-vroom-1 Started
Container sentry_onpremise-snuba-subscription-consumer-events-1 Started
Container sentry_onpremise-snuba-api-1 Started
Container sentry_onpremise-snuba-outcomes-consumer-1 Started
Container sentry_onpremise-snuba-consumer-1 Started
Container sentry_onpremise-snuba-transactions-consumer-1 Started
Container sentry_onpremise-snuba-replacer-1 Started
Container sentry_onpremise-snuba-subscription-consumer-transactions-1 Started
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://github.com/getsentry/self-hosted#enhance-sentry-image
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for github.apps-install-url (key='github.apps-install-url')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for github.apps-install-url (key='github.apps-install-url')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for vercel.integration-slug (key='vercel.integration-slug')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for vercel.integration-slug (key='vercel.integration-slug')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for msteams.app-id (key='msteams.app-id')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for msteams.app-id (key='msteams.app-id')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for discord.application-id (key='discord.application-id')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for discord.application-id (key='discord.application-id')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for discord.public-key (key='discord.public-key')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for discord.public-key (key='discord.public-key')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for discord.bot-token (key='discord.bot-token')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for discord.bot-token (key='discord.bot-token')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
value = self.cache.get(cache_key)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to fetch option cache for discord.client-secret (key='discord.client-secret')
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
self.cache.set(cache_key, value, self.ttl)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
return getattr(self._connections[self._alias], item)
File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
conn = self.create_connection(alias)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
return backend_cls(location, params)
File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
import memcache
ModuleNotFoundError: No module named 'memcache'
19:13:58 [WARNING] sentry: Unable to update option cache for discord.client-secret (key='discord.client-secret')

  • Unknown config option found: 'slack.legacy-app'
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:13:58 [WARNING] sentry: Unable to fetch option cache for delightful_metrics.enable_code_locations (key='delightful_metrics.enable_code_locations')
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:13:58 [WARNING] sentry: Unable to update option cache for delightful_metrics.enable_code_locations (key='delightful_metrics.enable_code_locations')
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:13:59 [WARNING] sentry: Unable to update option cache for redis.clusters (key='redis.clusters')
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:13:59 [WARNING] sentry: Unable to update option cache for redis.clusters (key='redis.clusters')
    Running migrations for default
    Operations to perform:
    Apply all migrations: auth, contenttypes, feedback, hybridcloud, nodestore, replays, sentry, sessions, sites, social_auth
    Running migrations:
    Rules: 100% |##################################################| Time: 0:00:00
    OK
    Applying sentry.0551_drop_xactor_actor... OK
    Applying sentry.0552_create_neglectedalert_table... OK
    Applying sentry.0553_add_new_index_to_groupedmessage_table... OK
    Applying sentry.0554_add_team_replica... OK
    Applying sentry.0555_set_neglectedrule_email_date_columns_nullable... OK
    Applying sentry.0556_organizationmapping_replicate_require_2fa... OK
    Applying sentry.0557_threshold_related_name... OK
    Applying sentry.0558_add_organization_member_team_replica... OK
    Applying sentry.0559_custom_dynamic_sampling_rule... OK
    Applying sentry.0560_add_monitorincident_table... OK
    Notification Settings: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0562_drop_xactor_actor_from_state... OK
    Applying sentry.0563_commitfilechange_drop_language_column... OK
    Applying sentry.0564_commitfilechange_delete_language_column... OK
    Rules: 100% |##################################################| Time: 0:00:00
    OK
    Monitors: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0567_add_slug_reservation_model... OK
    Monitor Environments: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0569_dashboard_widgets_indicator... OK
    Applying sentry.0570_repository_add_languages_column... OK
    Applying sentry.0571_add_hybrid_cloud_foreign_key_to_slug_reservation... OK
    Applying feedback.0002_feedback_add_org_id_and_rename_event_id... OK
    Applying feedback.0003_feedback_add_env... OK
    Applying sentry.0572_sentry_remove_unused_eventuser_index... OK
    Applying sentry.0573_add_first_seen_index_groupedmessage... OK
    User Options: 100% |###########################################| Time: 0:00:00
    OK
    Applying sentry.0575_incident_date_added_index... OK
    Applying sentry.0576_add_missing_org_integration_scope... OK
    Applying sentry.0577_drop_latest_incident_index... OK
    Applying sentry.0578_add_query_and_users_to_custom_dynamic_sampling_rules... OK
    Applying sentry.0579_index_incident_trigger... OK
    Applying sentry.0580_threhsold_window_positive_integer... OK
    Applying sentry.0581_add_user_and_team_to_alert_rules... OK
    Applying sentry.0582_add_status_indexes_checkins... OK
    Applying sentry.0583_add_early_adopter_to_organization_mapping... OK
    Applying hybridcloud.0001_add_api_key_replica... OK
    Applying hybridcloud.0002_add_slug_reservation_replica_model... OK
    Applying hybridcloud.0003_add_scopes_to_api_key_replica... OK
    Applying hybridcloud.0004_add_cache_version... OK
    Applying hybridcloud.0005_add_missing_org_integration_scope... OK
    Applying hybridcloud.0006_add_apitokenreplica... OK
    Applying hybridcloud.0007_add_orgauthtokenreplica... OK
    Applying hybridcloud.0008_add_externalactorreplica... OK
    Applying hybridcloud.0009_make_user_id_optional_for_slug_reservation_replica... OK
    Applying sentry.0584_apitoken_add_name_and_last_chars... OK
    Applying sentry.0585_add_orgmember_partnership_restricted_flag... OK
    Applying sentry.0586_add_has_feedbacks_flag... OK
    Neglected Rules: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0588_add_relocation_models... OK
    Applying sentry.0589_add_commit_date_added_indices... OK
    Applying sentry.0590_add_metadata_to_sentry_app... OK
    Applying sentry.0591_remove_relocation_hybrid_cloud_foreign_keys... OK
    Applying sentry.0592_delete_relocation_hybrid_cloud_foreign_keys... OK
    Applying sentry.0593_add_notification_flag_to_dynamic_sampling_custom_rule... OK
    Applying sentry.0594_trivial_but_dangerous_2... OK
    Applying sentry.0595_trivial_but_dangerous_3... OK
    Applying sentry.0596_trivial_but_dangerous_4... OK
    Applying sentry.0597_trivial_but_dangerous_5... OK
    Applying sentry.0598_trivial_but_dangerous_1... OK
    Applying sentry.0599_add_import_chunk... OK
    Applying sentry.0600_eventattachment_metadata... OK
    Applying sentry.0601_add_has_sourcemaps_project_flag... OK
    Applying sentry.0602_import_chunk_unique_together... OK
    Applying sentry.0603_add_dangerous_but_trivial_index... OK
    Applying sentry.0604_remove_dangerous_but_trivial_index... OK
    Applying sentry.0605_addremove_dangerous_but_trivial_index... OK
    Applying sentry.0606_update_user_to_optional_organization_slug_reservation... OK
    Applying sentry.0607_drop_externalactor_actorid... OK
    Applying sentry.0608_notification_setting_db_constraint... OK
    Applying sentry.0609_remove_notification_setting_model... OK
    Applying sentry.0610_remove_notification_setting_table... OK
    Applying sentry.0611_add_regression_group_model... OK
    Applying sentry.0612_expand_relocation_model... OK
    Applying sentry.0613_drop_eventuser_table_part_1... OK
    Applying sentry.0614_drop_eventuser_table_part_2... OK
    Applying sentry.0615_add_dashboard_widget_query_on_demand_table... OK
    Applying sentry.0616_drop_event_user_id_from_userreport_table_step_1... OK
    Applying sentry.0617_monitor_boolean_fields_muted_disabled... OK
    Applying sentry.0618_drop_event_user_id_from_userreport_table_step_2... OK
    Monitors: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0620_add_has_new_feedbacks_flag... OK
    Monitors: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0622_add_has_custom_metrics_flag... OK
    Applying sentry.0623_increase_regression_fingerprint_length... OK
    Applying sentry.0624_add_is_muted_monitorenvironment... OK
    Applying sentry.0625_change_rule_label_type_to_char256... OK
    Applying sentry.0626_add_member_project_creation_bitfield... OK
    Applying sentry.0627_change_to_sentry_slug... OK
    Applying sentry.0628_better_menv_latest_index... OK
    Applying sentry.0629_eventattachment_index... OK
    Applying sentry.0630_better_monitor_latest_index... OK
    Applying sentry.0631_add_priority_columns_to_groupedmessage... OK
    Api Tokens: 100% |# | ETA: --:--:--
    OK
    Applying sentry.0633_add_priority_locked_at_to_groupedmessage... OK
    Control Outboxs: 100% |# | ETA: --:--:--
    OK
    Creating missing DSNs
    Correcting Group.num_comments counter
    19:14:11 [INFO] sentry.outboxes: Executing outbox replication backfill
    19:14:12 [INFO] sentry.outboxes: Processing sentry.ControlOutboxs...
    19:14:12 [INFO] sentry.outboxes: Processing sentry.RegionOutboxs...
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 119, in get_cache
    value = self.cache.get(cache_key)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:14:13 [WARNING] sentry: Unable to fetch option cache for transaction-events.force-disable-internal-project (key='transaction-events.force-disable-internal-project')
    Traceback (most recent call last):
    File "/usr/local/lib/python3.10/site-packages/sentry/options/store.py", line 262, in set_cache
    self.cache.set(cache_key, value, self.ttl)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 15, in getattr
    return getattr(self._connections[self._alias], item)
    File "/usr/local/lib/python3.10/site-packages/django/utils/connection.py", line 62, in getitem
    conn = self.create_connection(alias)
    File "/usr/local/lib/python3.10/site-packages/sentry_sdk/integrations/django/caching.py", line 108, in sentry_create_connection
    cache = original_create_connection(self, alias)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/init.py", line 44, in create_connection
    return backend_cls(location, params)
    File "/usr/local/lib/python3.10/site-packages/django/core/cache/backends/memcached.py", line 181, in init
    import memcache
    ModuleNotFoundError: No module named 'memcache'
    19:14:13 [WARNING] sentry: Unable to update option cache for transaction-events.force-disable-internal-project (key='transaction-events.force-disable-internal-project')
    19:14:13 [INFO] sentry.outboxes: done

▶ Setting up GeoIP integration ...
Setting up IP address geolocation ...
IP address geolocation database already exists.
IP address geolocation is not configured for updates.
See https://develop.sentry.dev/self-hosted/geolocation/ for instructions.
Error setting up IP address geolocation.


You're all done! Run the following command to get Sentry running:

docker compose up -d


@crummy
Copy link

crummy commented Jan 21, 2024

... I fixed it by editing my sentry.conf.py like this diff suggests:

https://github.com/getsentry/self-hosted/pull/2722/files

@vladdevops
Copy link
Author

... Я исправил это, отредактировав свой sendry.conf.py, как предлагает этот diff:

https://github.com/getsentry/self-hosted/pull/2722/files

Error solved, thank you

@github-actions github-actions bot locked and limited conversation to collaborators Feb 7, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
Archived in project
Archived in project
Development

No branches or pull requests

4 participants