2017-04-25 01:24:51 -06:00
|
|
|
APP_NAME = Gitea: Git with a cup of tea
|
|
|
|
RUN_MODE = prod
|
|
|
|
|
|
|
|
[database]
|
2017-11-28 13:58:37 -07:00
|
|
|
DB_TYPE = sqlite3
|
2022-09-02 13:18:23 -06:00
|
|
|
PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/gitea.db
|
2017-04-25 01:24:51 -06:00
|
|
|
|
2017-09-16 14:16:21 -06:00
|
|
|
[indexer]
|
2017-10-27 00:10:54 -06:00
|
|
|
REPO_INDEXER_ENABLED = true
|
2022-09-02 13:18:23 -06:00
|
|
|
REPO_INDEXER_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/indexers/repos.bleve
|
2017-09-16 14:16:21 -06:00
|
|
|
|
2022-06-24 13:04:30 -06:00
|
|
|
[queue.issue_indexer]
|
Rewrite queue (#24505)
# ⚠️ Breaking
Many deprecated queue config options are removed (actually, they should
have been removed in 1.18/1.19).
If you see the fatal message when starting Gitea: "Please update your
app.ini to remove deprecated config options", please follow the error
messages to remove these options from your app.ini.
Example:
```
2023/05/06 19:39:22 [E] Removed queue option: `[indexer].ISSUE_INDEXER_QUEUE_TYPE`. Use new options in `[queue.issue_indexer]`
2023/05/06 19:39:22 [E] Removed queue option: `[indexer].UPDATE_BUFFER_LEN`. Use new options in `[queue.issue_indexer]`
2023/05/06 19:39:22 [F] Please update your app.ini to remove deprecated config options
```
Many options in `[queue]` are are dropped, including:
`WRAP_IF_NECESSARY`, `MAX_ATTEMPTS`, `TIMEOUT`, `WORKERS`,
`BLOCK_TIMEOUT`, `BOOST_TIMEOUT`, `BOOST_WORKERS`, they can be removed
from app.ini.
# The problem
The old queue package has some legacy problems:
* complexity: I doubt few people could tell how it works.
* maintainability: Too many channels and mutex/cond are mixed together,
too many different structs/interfaces depends each other.
* stability: due to the complexity & maintainability, sometimes there
are strange bugs and difficult to debug, and some code doesn't have test
(indeed some code is difficult to test because a lot of things are mixed
together).
* general applicability: although it is called "queue", its behavior is
not a well-known queue.
* scalability: it doesn't seem easy to make it work with a cluster
without breaking its behaviors.
It came from some very old code to "avoid breaking", however, its
technical debt is too heavy now. It's a good time to introduce a better
"queue" package.
# The new queue package
It keeps using old config and concept as much as possible.
* It only contains two major kinds of concepts:
* The "base queue": channel, levelqueue, redis
* They have the same abstraction, the same interface, and they are
tested by the same testing code.
* The "WokerPoolQueue", it uses the "base queue" to provide "worker
pool" function, calls the "handler" to process the data in the base
queue.
* The new code doesn't do "PushBack"
* Think about a queue with many workers, the "PushBack" can't guarantee
the order for re-queued unhandled items, so in new code it just does
"normal push"
* The new code doesn't do "pause/resume"
* The "pause/resume" was designed to handle some handler's failure: eg:
document indexer (elasticsearch) is down
* If a queue is paused for long time, either the producers blocks or the
new items are dropped.
* The new code doesn't do such "pause/resume" trick, it's not a common
queue's behavior and it doesn't help much.
* If there are unhandled items, the "push" function just blocks for a
few seconds and then re-queue them and retry.
* The new code doesn't do "worker booster"
* Gitea's queue's handlers are light functions, the cost is only the
go-routine, so it doesn't make sense to "boost" them.
* The new code only use "max worker number" to limit the concurrent
workers.
* The new "Push" never blocks forever
* Instead of creating more and more blocking goroutines, return an error
is more friendly to the server and to the end user.
There are more details in code comments: eg: the "Flush" problem, the
strange "code.index" hanging problem, the "immediate" queue problem.
Almost ready for review.
TODO:
* [x] add some necessary comments during review
* [x] add some more tests if necessary
* [x] update documents and config options
* [x] test max worker / active worker
* [x] re-run the CI tasks to see whether any test is flaky
* [x] improve the `handleOldLengthConfiguration` to provide more
friendly messages
* [x] fine tune default config values (eg: length?)
## Code coverage:
![image](https://user-images.githubusercontent.com/2114189/236620635-55576955-f95d-4810-b12f-879026a3afdf.png)
2023-05-08 05:49:59 -06:00
|
|
|
TYPE = level
|
2022-09-02 13:18:23 -06:00
|
|
|
DATADIR = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/indexers/issues.queue
|
2022-06-24 13:04:30 -06:00
|
|
|
|
2021-09-03 04:20:57 -06:00
|
|
|
[queue]
|
|
|
|
TYPE = immediate
|
|
|
|
|
2020-09-07 09:05:08 -06:00
|
|
|
[queue.code_indexer]
|
|
|
|
TYPE = immediate
|
|
|
|
|
2020-09-11 08:14:48 -06:00
|
|
|
[queue.push_update]
|
|
|
|
TYPE = immediate
|
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
[repository]
|
2022-09-02 13:18:23 -06:00
|
|
|
ROOT = {{REPO_TEST_DIR}}tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/gitea-repositories
|
2017-09-11 23:51:12 -06:00
|
|
|
|
|
|
|
[repository.local]
|
2022-09-02 13:18:23 -06:00
|
|
|
LOCAL_COPY_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/tmp/local-repo
|
2021-05-01 03:54:55 -06:00
|
|
|
|
|
|
|
[repository.upload]
|
2022-09-02 13:18:23 -06:00
|
|
|
TEMP_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/tmp/uploads
|
2017-04-25 01:24:51 -06:00
|
|
|
|
2019-10-16 07:42:42 -06:00
|
|
|
[repository.signing]
|
|
|
|
SIGNING_KEY = none
|
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
[server]
|
|
|
|
SSH_DOMAIN = localhost
|
2017-09-11 23:51:12 -06:00
|
|
|
HTTP_PORT = 3003
|
|
|
|
ROOT_URL = http://localhost:3003/
|
2017-04-25 01:24:51 -06:00
|
|
|
DISABLE_SSH = false
|
2018-01-16 04:07:47 -07:00
|
|
|
SSH_LISTEN_HOST = localhost
|
|
|
|
SSH_PORT = 2203
|
|
|
|
START_SSH_SERVER = true
|
2017-11-28 13:58:37 -07:00
|
|
|
LFS_START_SERVER = true
|
2017-04-25 01:24:51 -06:00
|
|
|
OFFLINE_MODE = false
|
2017-11-28 13:58:37 -07:00
|
|
|
LFS_JWT_SECRET = Tv_MjmZuHqpIY6GFl12ebgkRAMt4RlWt0v4EHKSXO0w
|
2022-09-02 13:18:23 -06:00
|
|
|
APP_DATA_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data
|
2019-01-23 01:56:51 -07:00
|
|
|
ENABLE_GZIP = true
|
2019-07-06 19:28:09 -06:00
|
|
|
BUILTIN_SSH_SERVER_USER = git
|
2022-06-05 01:16:14 -06:00
|
|
|
SSH_TRUSTED_USER_CA_KEYS = ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCb4DC1dMFnJ6pXWo7GMxTchtzmJHYzfN6sZ9FAPFR4ijMLfGki+olvOMO5Fql1/yGnGfbELQa1S6y4shSvj/5K+zUFScmEXYf3Gcr87RqilLkyk16RS+cHNB1u87xTHbETaa3nyCJeGQRpd4IQ4NKob745mwDZ7jQBH8AZEng50Oh8y8fi8skBBBzaYp1ilgvzG740L7uex6fHV62myq0SXeCa+oJUjq326FU8y+Vsa32H8A3e7tOgXZPdt2TVNltx2S9H2WO8RMi7LfaSwARNfy1zu+bfR50r6ef8Yx5YKCMz4wWb1SHU1GS800mjOjlInLQORYRNMlSwR1+vLlVDciOqFapDSbj+YOVOawR0R1aqlSKpZkt33DuOBPx9qe6CVnIi7Z+Px/KqM+OLCzlLY/RS+LbxQpDWcfTVRiP+S5qRTcE3M3UioN/e0BE/1+MpX90IGpvVkA63ILYbKEa4bM3ASL7ChTCr6xN5XT+GpVJveFKK1cfNx9ExHI4rzYE=
|
2017-04-25 01:24:51 -06:00
|
|
|
|
2020-06-03 13:07:02 -06:00
|
|
|
[attachment]
|
2022-09-02 13:18:23 -06:00
|
|
|
PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data/attachments
|
2020-06-03 13:07:02 -06:00
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
[mailer]
|
2019-04-06 18:25:14 -06:00
|
|
|
ENABLED = true
|
2023-07-26 07:50:15 -06:00
|
|
|
PROTOCOL = dummy
|
2022-09-02 13:18:23 -06:00
|
|
|
FROM = sqlite-{{TEST_TYPE}}-test@gitea.io
|
2017-04-25 01:24:51 -06:00
|
|
|
|
|
|
|
[service]
|
2017-11-28 13:58:37 -07:00
|
|
|
REGISTER_EMAIL_CONFIRM = false
|
2020-12-19 18:31:06 -07:00
|
|
|
REGISTER_MANUAL_CONFIRM = false
|
2019-04-06 18:25:14 -06:00
|
|
|
ENABLE_NOTIFY_MAIL = true
|
2017-11-28 13:58:37 -07:00
|
|
|
DISABLE_REGISTRATION = false
|
|
|
|
ENABLE_CAPTCHA = false
|
|
|
|
REQUIRE_SIGNIN_VIEW = false
|
|
|
|
DEFAULT_KEEP_EMAIL_PRIVATE = false
|
2017-05-08 13:51:53 -06:00
|
|
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
|
2017-11-28 13:58:37 -07:00
|
|
|
NO_REPLY_ADDRESS = noreply.example.org
|
2017-04-25 01:24:51 -06:00
|
|
|
|
|
|
|
[picture]
|
2020-06-03 13:07:02 -06:00
|
|
|
DISABLE_GRAVATAR = false
|
|
|
|
ENABLE_FEDERATED_AVATAR = false
|
2022-09-02 13:18:23 -06:00
|
|
|
AVATAR_UPLOAD_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data/avatars
|
|
|
|
REPOSITORY_AVATAR_UPLOAD_PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data/repo-avatars
|
2020-06-03 13:07:02 -06:00
|
|
|
|
2017-04-25 01:24:51 -06:00
|
|
|
[session]
|
|
|
|
PROVIDER = file
|
2022-09-02 13:18:23 -06:00
|
|
|
PROVIDER_CONFIG = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data/sessions
|
2017-04-25 01:24:51 -06:00
|
|
|
|
|
|
|
[log]
|
2022-09-02 13:18:23 -06:00
|
|
|
MODE = {{TEST_LOGGER}}
|
2022-01-29 05:41:44 -07:00
|
|
|
ROOT_PATH = {{REPO_TEST_DIR}}sqlite-log
|
2021-07-14 08:43:13 -06:00
|
|
|
ENABLE_SSH_LOG = true
|
2023-08-19 19:05:29 -06:00
|
|
|
logger.xorm.MODE = file
|
2017-04-25 01:24:51 -06:00
|
|
|
|
2019-04-06 18:25:14 -06:00
|
|
|
[log.test]
|
|
|
|
LEVEL = Info
|
|
|
|
COLORIZE = true
|
2017-04-25 01:24:51 -06:00
|
|
|
|
|
|
|
[log.file]
|
2019-04-06 18:25:14 -06:00
|
|
|
LEVEL = Debug
|
2017-04-25 01:24:51 -06:00
|
|
|
|
|
|
|
[security]
|
2020-10-07 12:24:14 -06:00
|
|
|
DISABLE_GIT_HOOKS = false
|
2017-04-25 01:24:51 -06:00
|
|
|
INSTALL_LOCK = true
|
|
|
|
SECRET_KEY = 9pCviYTWSb
|
|
|
|
INTERNAL_TOKEN = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE0OTI3OTU5ODN9.OQkH5UmzID2XBdwQ9TAI6Jj2t1X-wElVTjbE7aoN4I8
|
2023-12-22 20:29:51 -07:00
|
|
|
DISABLE_QUERY_AUTH_TOKEN = true
|
2019-02-02 19:06:52 -07:00
|
|
|
|
2019-04-06 18:25:14 -06:00
|
|
|
[oauth2]
|
|
|
|
JWT_SECRET = KZb_QLUd4fYVyxetjxC4eZkrBgWM2SndOOWDNtgUUko
|
2022-01-23 12:02:29 -07:00
|
|
|
|
|
|
|
[lfs]
|
2022-09-02 13:18:23 -06:00
|
|
|
PATH = tests/{{TEST_TYPE}}/gitea-{{TEST_TYPE}}-sqlite/data/lfs
|
2022-05-08 09:51:50 -06:00
|
|
|
|
|
|
|
[packages]
|
|
|
|
ENABLED = true
|
2022-12-12 05:45:21 -07:00
|
|
|
|
|
|
|
[markup.html]
|
|
|
|
ENABLED = true
|
|
|
|
FILE_EXTENSIONS = .html
|
Clean some legacy files and move some build files (#23699)
* Clean the "tools" directory. The "tools" directory contains only two
files, move them.
* The "external_renderer.go" works like "cat" command to echo Stdin to
Stdout , to help testing.
* The `// gobuild: external_renderer` is incorrect, there should be no
space: `//gobuild: external_renderer`
* The `fmt.Print(os.Args[1])` is not a well-defined behavior, and it's
never used.
* The "watch.sh" is for "make watch", it's somewhat related to "build"
* After this PR, there is no "tools" directory, the project root
directory looks slightly simpler than before.
* Remove the legacy "contrib/autoboot.sh", there is no
"gogs_supervisord.sh"
* Remove the legacy "contrib/mysql.sql", it's never mentioned anywhere.
* Remove the legacy "contrib/pr/checkout.go", it has been broken for
long time, and it introduces unnecessary dependencies of the main code
base.
2023-03-25 14:22:51 -06:00
|
|
|
RENDER_COMMAND = `go run build/test-echo.go`
|
2022-12-12 05:45:21 -07:00
|
|
|
IS_INPUT_FILE = false
|
|
|
|
RENDER_CONTENT_MODE=sanitized
|
2023-05-19 07:37:57 -06:00
|
|
|
|
|
|
|
[actions]
|
|
|
|
ENABLED = true
|