-
Notifications
You must be signed in to change notification settings - Fork 136
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
[Feature Request] Provide Image with Clouseau / Fulltext Search #8
Comments
+1 I made https://github.com/homerjam/cloudant-search/tree/latest by following some instructions but I'm a total noob when it comes to making it production ready, adding auth/ssl etc. The other thing is it seems to wipe the database directory on restart when I use it locally - so really its nothing more than a proof of concept. |
I'm afraid ASF restrictions will make this difficult for us, but we'll look into at least providing the Dockerfile. You may have to build it yourself. |
+1 on this |
Hello, I tried to make a variant of the latest CouchDB image (2.1.1) with search feature but encountered some problem. Hoping that somebody can give some pointer as to how to solve the problem. Following is what I did:
All the service is running. As I have
The problem occur when I try to test analyzer tokenization with;
CouchDB return 500 Internal Server Error with response {
"error": "{badarg,[{erlang,monitor,[process,{analyzer,clouseau@clouseau}],[]},\n {ioq,submit_request,2,[{file,\"src/ioq.erl\"},{line,156}]},\n {ioq,maybe_submit_request,1,[{file,\"src/ioq.erl\"},{line,119}]},\n {ioq,handle_info,2,[{file,\"src/ioq.erl\"},{line,92}]},\n {gen_server,handle_msg,5,[{file,\"gen_server.erl\"},{line,599}]},\n {proc_lib,init_p_do_apply,3,[{file,\"proc_lib.erl\"},{line,237}]}]}",
"reason": "{gen_server,call,\n [ioq,\n {request,{analyzer,clouseau@clouseau},\n {analyze,<<\"standard\">>,<<\"hello world\">>},\n undefined,<0.8648.0>,undefined},\n infinity]}",
"ref": 1634367512
} Following is the output for Based on the logs and the research I conducted/understand, I assume that it is an error related to erlang rpc? Maybe the problem is caused by incompatible erlang version between CouchDB and Clouseau? I have been working on this for the past week to bring it up to this point. Any helps is greatly appreciated. Do know that I have no erlang knowledge so all the curly bracket is alien to me. Last but not least, thanks in advance and Happy New Year! |
I followed thoroughly the instructions from ibm 2015. If you would like to use the tests in couchdb you should
You may find my package for OpenIndiana in the branch couchdb-dreyfus. The folder patches contains the patches and among them patches 06-, 07- and 08- are relevant for the integration of dreyfus. In folder files you find dreyfus.js which should be copied to share/server. All tests are now successfully passed. AFAIK CouchDB and Clouseau should run in the same docker container. Maybe this the root cause of your rpc error. Did you know this one with CouchDB 2.0? edited: |
two things missing for me until it worked: a) the standard cookie for clouseau is "monster" and needs to be set to the same value in the erlang flags. (would be happy for help how to set the flag in the maven scala startup command, i did not succeed in changing it) b) for some reason mango checks for dryfus with module_loaded(dryfus_index) but dryfus_index was never in my loaded modules, i patched it to check module_loaded(dryfus_index_manager) and since then it works in combination with all @grueni s patches. I will publish my docker container and post here in the next days. would be interesting to know the exact licensing issues, i would love to have this in the apache/couchdb-docker repo... |
We're tracking the upstream issue here: apache/couchdb#1269 Once this is resolved, expect to see official support in the image for these subsystems. |
3.0 is going to include the Couch side of the search function natively. You'll need to run another container with the actual lucene runtime in it. Once 3.0 releases we'll resolve this by providing a sample docker-compose file. |
hey @willholley do you want to take a shot at a docker-compose for this + search? would be nice to put it in the docs for 3.0.0. (Yes, I know there's already couchdb-helm...) |
FYI the place where things get tricky with docker-compose compared to Kubernetes is that in Compose the containers are on separate networks, which means the Clouseau container can’t find the EPMD in the CouchDB container. In Kube they share the loopback network so one EPMD suffices. I think one could create a multi-process container that runs both EPMD and Java, and then configures the two containers to look at the right links to find each other, it’s just a somewhat janky setup. Alternatively one could patch Clouseau to have a configurable location to look for EPMD, but we’re basically trying to avoid modifying that code at this point. I would love to see a docker-compose setup, I think it would make development setups much simpler. Just wanted to explain why we don’t have this done already. |
Not an expert but would it be possible to use a proxy in the Clouseau container (suggested here)? |
Hi, here is a simple docker-compose example using search plugin without any hack, just standard compose yaml. mkdir -p ./config/{couchdb,clouseau} ./config/clouseau/clouseau.ini [clouseau]
name[email protected]
cookie=monster
dir=/data
max_indexes_open=500 ./config/clouseau/log4j.properties
./config/couchdb/local.ini [couch_httpd_auth]
secret = dev
[admins]
; admin = admin
admin = -pbkdf2-37aa363808ec5b83fc71cf2811479fbf1917f43d,2483e8ffe206819712f3bd1ba2308d41,10 curl -sSL -o clouseau-2.17.0-dist.zip "https://github.com/cloudant-labs/clouseau/releases/download/2.17.0/clouseau-2.17.0-dist.zip
# Unizp clouseau-2.17.0-dist.zip in clouseau-2.17.0 docker-compose.yml version: '3.8'
services:
couchdb1:
image: couchdb:3.1.0
restart: always
ports:
- 5984:5984
environment:
- NODENAME=10.0.0.10
- ERL_FLAGS=-setcookie monster
volumes:
- ./config/couchdb:/opt/couchdb/etc/local.d
- ./data/couchdb/1:/opt/couchdb/data
networks:
couchdb-net:
ipv4_address: 10.0.0.10
clouseau1:
image: openjdk:8
command: >
java -server
-classpath '/app/*'
-Xmx2G -Dsun.net.inetaddr.ttl=30
-Dsun.net.inetaddr.negative.ttl=30
-Dlog4j.configuration=file:/config/log4j.properties
-XX:OnOutOfMemoryError="kill -9 %p"
-XX:+UseConcMarkSweepGC
-XX:+CMSParallelRemarkEnabled com.cloudant.clouseau.Main /config/clouseau.ini
restart: always
depends_on:
- couchdb1
volumes:
- ./config/clouseau:/config
- ./data/clouseau/1:/data
- ./clouseau-2.17.0:/app
network_mode: service:couchdb1
networks:
couchdb-net:
name: couchdb-net
driver: bridge
ipam:
config:
- subnet: 10.0.0.0/24 docker-compose up Check it http://127.0.0.1:5984 The "trick" is the |
@rkleine Would you like to submit a PR against this repo with this setup? Just create a new subdirectory called |
This adds a Dockerfile which contains both CouchDB and Clouseau in a single container. This is useful because in most containerized environments, EPMD runs in the CouchDB container; restarting the CouchDB container can therefore lead to Clouseau becoming orphaned because EPMD is also killed. The container is based on the Red Hat UBI and uses runit to supervise both CouchDB and Clouseau. UBI is used mostly for familiarity (this is how we build a combined container at IBM), but it serves as a reference for anybody looking to port to other base images. The dockerfile entrypoint is modified to configure CouchDB and Clouseau in an Erlang cluster. It's equally possible to run the container in e.g. Kubernetes or Docker Compose without the dockerfile entrypoint; the user would then need to write out the configuration files via their configuration management system and call `/sbin/runsvdir-start` directly. Both CouchDB and Clouseau will, by default, run under the UID 5984 (CouchDB) and GID 0. If the container is started as a non-root user, that ambient UID/GID is used instead. Refs #8
This adds a Dockerfile which contains both CouchDB and Clouseau in a single container. This is useful because in most containerized environments, EPMD runs in the CouchDB container; restarting the CouchDB container can therefore lead to Clouseau becoming orphaned because EPMD is also killed. The container is based on the Red Hat UBI and uses runit to supervise both CouchDB and Clouseau. UBI is used mostly for familiarity (this is how we build a combined container at IBM), but it serves as a reference for anybody looking to port to other base images. The dockerfile entrypoint is modified to configure CouchDB and Clouseau in an Erlang cluster. It's equally possible to run the container in e.g. Kubernetes or Docker Compose without the dockerfile entrypoint; the user would then need to write out the configuration files via their configuration management system and call `/sbin/runsvdir-start` directly. Both CouchDB and Clouseau will, by default, run under the UID 5984 (CouchDB) and GID 0. If the container is started as a non-root user, that ambient UID/GID is used instead. Refs #8
From docker-couchdb: klaemo/docker-couchdb#48
It’d be cool to have a build of 2.0 that includes the Cloudant Fulltext Search setup described in https://cloudant.com/blog/enable-full-text-search-in-apache-couchdb/
Note, this is not a request to make the 2.0 image to include this, but a new image that is 2.0 + the full text stuff :)
The text was updated successfully, but these errors were encountered: