-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Hi
I installed couchdb 1.7.2 , then create new empty doc(named test) and view.
then i get this error :
[error] [<0.319.0>] OS Process Error <0.321.0> :: {os_process_error,
{exit_status,139}}
[error] [<0.319.0>] OS Process Error <0.323.0> :: {os_process_error,
{exit_status,139}}
E.G.
create new empty doc
curl -X GET http://127.0.0.1:5984/test
{"db_name":"test","doc_count":1,"doc_del_count":0,"update_seq":1,"purge_seq":0,"compact_running":false,"disk_size":4188,"data_size":292,"instance_start_time":"1584272640397307","disk_format_version":6,"committed_update_seq":1}
Add view
curl -H 'Content-Type: application/json' -X PUT http://127.0.0.1:5984/test/_design/test -d ' {
"_id" : "_design/test",
"views" : {
"foo" : {
"map" : "function(doc){ emit(doc._id, doc._rev)}"
}
}
} '
Then exec the view then got blocked, then can get the error(os_process_error,exit_status,139)
http://127.0.0.1:5984/test/_design/test/_view/foo
My env
#uname -r
4.4.131-20190505.kylin.server-generic (ARM)
Can anyone confirm ?
Greetings