Code Monkey home page Code Monkey logo

phprados's Introduction

Ceph - a scalable distributed storage system

See https://ceph.com/ for current information about Ceph.

Status

Issue Backporting

Contributing Code

Most of Ceph is dual-licensed under the LGPL version 2.1 or 3.0. Some miscellaneous code is either public domain or licensed under a BSD-style license.

The Ceph documentation is licensed under Creative Commons Attribution Share Alike 3.0 (CC-BY-SA-3.0).

Some headers included in the ceph/ceph repository are licensed under the GPL. See the file COPYING for a full inventory of licenses by file.

All code contributions must include a valid "Signed-off-by" line. See the file SubmittingPatches.rst for details on this and instructions on how to generate and submit patches.

Assignment of copyright is not required to contribute code. Code is contributed under the terms of the applicable license.

Checking out the source

Clone the ceph/ceph repository from github by running the following command on a system that has git installed:

git clone [email protected]:ceph/ceph

Alternatively, if you are not a github user, you should run the following command on a system that has git installed:

git clone https://github.com/ceph/ceph.git

When the ceph/ceph repository has been cloned to your system, run the following commands to move into the cloned ceph/ceph repository and to check out the git submodules associated with it:

cd ceph
git submodule update --init --recursive --progress

Build Prerequisites

section last updated 27 Jul 2023

Make sure that curl is installed. The Debian and Ubuntu apt command is provided here, but if you use a system with a different package manager, then you must use whatever command is the proper counterpart of this one:

apt install curl

Install Debian or RPM package dependencies by running the following command:

./install-deps.sh

Install the python3-routes package:

apt install python3-routes

Building Ceph

These instructions are meant for developers who are compiling the code for development and testing. To build binaries that are suitable for installation we recommend that you build .deb or .rpm packages, or refer to ceph.spec.in or debian/rules to see which configuration options are specified for production builds.

To build Ceph, make sure that you are in the top-level ceph directory that contains do_cmake.sh and CONTRIBUTING.rst and run the following commands:

./do_cmake.sh
cd build
ninja

do_cmake.sh by default creates a "debug build" of Ceph, which can be up to five times slower than a non-debug build. Pass -DCMAKE_BUILD_TYPE=RelWithDebInfo to do_cmake.sh to create a non-debug build.

Ninja is the buildsystem used by the Ceph project to build test builds. The number of jobs used by ninja is derived from the number of CPU cores of the building host if unspecified. Use the -j option to limit the job number if the build jobs are running out of memory. If you attempt to run ninja and receive a message that reads g++: fatal error: Killed signal terminated program cc1plus, then you have run out of memory. Using the -j option with an argument appropriate to the hardware on which the ninja command is run is expected to result in a successful build. For example, to limit the job number to 3, run the command ninja -j 3. On average, each ninja job run in parallel needs approximately 2.5 GiB of RAM.

This documentation assumes that your build directory is a subdirectory of the ceph.git checkout. If the build directory is located elsewhere, point CEPH_GIT_DIR to the correct path of the checkout. Additional CMake args can be specified by setting ARGS before invoking do_cmake.sh. See cmake options for more details. For example:

ARGS="-DCMAKE_C_COMPILER=gcc-7" ./do_cmake.sh

To build only certain targets, run a command of the following form:

ninja [target name]

To install:

ninja install

CMake Options

The -D flag can be used with cmake to speed up the process of building Ceph and to customize the build.

Building without RADOS Gateway

The RADOS Gateway is built by default. To build Ceph without the RADOS Gateway, run a command of the following form:

cmake -DWITH_RADOSGW=OFF [path to top-level ceph directory]

Building with debugging and arbitrary dependency locations

Run a command of the following form to build Ceph with debugging and alternate locations for some external dependencies:

cmake -DCMAKE_INSTALL_PREFIX=/opt/ceph -DCMAKE_C_FLAGS="-Og -g3 -gdwarf-4" \
..

Ceph has several bundled dependencies such as Boost, RocksDB and Arrow. By default, cmake builds these bundled dependencies from source instead of using libraries that are already installed on the system. You can opt to use these system libraries, as long as they meet Ceph's version requirements. To use system libraries, use cmake options like WITH_SYSTEM_BOOST, as in the following example:

cmake -DWITH_SYSTEM_BOOST=ON [...]

To view an exhaustive list of -D options, invoke cmake -LH:

cmake -LH

Preserving diagnostic colors

If you pipe ninja to less and would like to preserve the diagnostic colors in the output in order to make errors and warnings more legible, run the following command:

cmake -DDIAGNOSTICS_COLOR=always ...

The above command works only with supported compilers.

The diagnostic colors will be visible when the following command is run:

ninja | less -R

Other available values for DIAGNOSTICS_COLOR are auto (default) and never.

Building a source tarball

To build a complete source tarball with everything needed to build from source and/or build a (deb or rpm) package, run

./make-dist

This will create a tarball like ceph-$version.tar.bz2 from git. (Ensure that any changes you want to include in your working directory are committed to git.)

Running a test cluster

From the ceph/ directory, run the following commands to launch a test Ceph cluster:

cd build
ninja vstart        # builds just enough to run vstart
../src/vstart.sh --debug --new -x --localhost --bluestore
./bin/ceph -s

Most Ceph commands are available in the bin/ directory. For example:

./bin/rbd create foo --size 1000
./bin/rados -p foo bench 30 write

To shut down the test cluster, run the following command from the build/ directory:

../src/stop.sh

Use the sysvinit script to start or stop individual daemons:

./bin/init-ceph restart osd.0
./bin/init-ceph stop

Running unit tests

To build and run all tests (in parallel using all processors), use ctest:

cd build
ninja
ctest -j$(nproc)

(Note: Many targets built from src/test are not run using ctest. Targets starting with "unittest" are run in ninja check and thus can be run with ctest. Targets starting with "ceph_test" can not, and should be run by hand.)

When failures occur, look in build/Testing/Temporary for logs.

To build and run all tests and their dependencies without other unnecessary targets in Ceph:

cd build
ninja check -j$(nproc)

To run an individual test manually, run ctest with -R (regex matching):

ctest -R [regex matching test name(s)]

(Note: ctest does not build the test it's running or the dependencies needed to run it)

To run an individual test manually and see all the tests output, run ctest with the -V (verbose) flag:

ctest -V -R [regex matching test name(s)]

To run tests manually and run the jobs in parallel, run ctest with the -j flag:

ctest -j [number of jobs]

There are many other flags you can give ctest for better control over manual test execution. To view these options run:

man ctest

Building the Documentation

Prerequisites

The list of package dependencies for building the documentation can be found in doc_deps.deb.txt:

sudo apt-get install `cat doc_deps.deb.txt`

Building the Documentation

To build the documentation, ensure that you are in the top-level /ceph directory, and execute the build script. For example:

admin/build-doc

Reporting Issues

To report an issue and view existing issues, please visit https://tracker.ceph.com/projects/ceph.

phprados's People

Contributors

elbandi avatar gdvyas avatar hugoboos avatar janorman avatar janosicek avatar matang-dave avatar matthi4s avatar pschlan avatar wenduo avatar wido avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

phprados's Issues

PHP 7 support

In the php7-master and in #21 this was mentioned.

Is this something which can be merged into master @wenduo ?

About the log of phprados

Hi,
Sorry to bother you, I'm using phprados right now. It's really useful.
How can I create a log like radosgw(Include client IP、read 、write 、object)?

Calling rados_getxattrs() on a non-existent object causes segmentation faults

While messing around with rados_getxattrs() I got some strange "502 Bad gateway" errors, which were caused by segmentation faults in phprados. I don't really know anything about C and segmentation faults but after some searching and trying I discovered that it only occurs if the given object doesn't exist. It is possible to avoid this by checking with rados_stat() before if the object exists, but I think this should still be fixed and return an error array like the other functions.

Here is the output of my try to mess around with gdb:

GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/sbin/php-fpm7.0...(no debugging symbols found)...done.
[New LWP 1880907]
[New LWP 1881270]
[New LWP 1881269]
[New LWP 1881268]
[New LWP 1881267]
[New LWP 1881265]
[New LWP 1881261]
[New LWP 1881260]
[New LWP 1881271]
[New LWP 1881263]
[New LWP 1881266]
[New LWP 1881264]
[New LWP 1881262]
[New LWP 1881272]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `php-fpm: pool www                                                            '.
Program terminated with signal SIGABRT, Aborted.
#0  0x00007fb6fdd41428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
54	../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
[Current thread is 1 (Thread 0x7fb6ffc918c0 (LWP 1880907))]
(gdb) bt
#0  0x00007fb6fdd41428 in __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:54
#1  0x00007fb6fdd4302a in __GI_abort () at abort.c:89
#2  0x00007fb6fdd837ea in __libc_message (do_abort=do_abort@entry=2, fmt=fmt@entry=0x7fb6fde9ced8 "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
#3  0x00007fb6fdd8c37a in malloc_printerr (ar_ptr=<optimized out>, ptr=<optimized out>, str=0x7fb6fde99caf "free(): invalid pointer", action=3) at malloc.c:5006
#4  _int_free (av=<optimized out>, p=<optimized out>, have_lock=0) at malloc.c:3867
#5  0x00007fb6fdd9053c in __GI___libc_free (mem=<optimized out>) at malloc.c:2968
#6  0x00007fb6ed64bc2d in librados::RadosXattrsIter::~RadosXattrsIter() () from /usr/lib/librados.so.2
#7  0x00007fb6ed607e94 in rados_getxattrs_end () from /usr/lib/librados.so.2
#8  0x00007fb6ed90dab0 in zif_rados_getxattrs (execute_data=<optimized out>, return_value=0x7fb6faa135c0) at /root/phprados/rados.c:1201
#9  0x0000560d5a6d40cd in ?? ()
#10 0x0000560d5a68f6cb in execute_ex ()
#11 0x0000560d5a6e3cf7 in zend_execute ()
#12 0x0000560d5a64ecb3 in zend_execute_scripts ()
#13 0x0000560d5a5edbb0 in php_execute_script ()
#14 0x0000560d5a4d1fe6 in main ()
(gdb) frame 8
#8  0x00007fb6ed90dab0 in zif_rados_getxattrs (execute_data=<optimized out>, return_value=0x7fb6faa135c0) at /root/phprados/rados.c:1201
1201	    rados_getxattrs_end(iter);
(gdb) info frame
Stack level 8, frame at 0x7ffe347a8fc0:
 rip = 0x7fb6ed90dab0 in zif_rados_getxattrs (/root/phprados/rados.c:1201); saved rip = 0x560d5a6d40cd
 called by frame at 0x7ffe347a9010, caller of frame at 0x7ffe347a8f50
 source language c.
 Arglist at 0x7ffe347a8f48, args: execute_data=<optimized out>, return_value=0x7fb6faa135c0
 Locals at 0x7ffe347a8f48, Previous frame's sp is 0x7ffe347a8fc0
 Saved registers:
  rbx at 0x7ffe347a8f90, rbp at 0x7ffe347a8f98, r12 at 0x7ffe347a8fa0, r13 at 0x7ffe347a8fa8, r14 at 0x7ffe347a8fb0, rip at 0x7ffe347a8fb8
(gdb) info args
execute_data = <optimized out>
return_value = 0x7fb6faa135c0
(gdb) info locals
ioctx_r = <optimized out>
oid = 0x7fb6faa67840
zioctx = 0x7fb6faa13650
iter = 0x560d5aa3f240 <executor_globals>
errDesc = 0x7fb6faa81840 "No such file or directory"
response = <optimized out>

I don't know if this is helpful at all or if you need the whole dump, let me know if you need any more information to solve this issue.

PHP Fatal error This function can't be called when not connected in

I have code like this, hello.php

<?php $rados = rados_create(); rados_conf_read_file($rados, '/etc/ceph/ceph.conf'); rados_connect($rados); foreach (rados_pool_list($rados) as $pool) { echo $pool."\n"; } rados_shutdown($rados);
when i'm run with sudo php hello.php is run as well, but when i'm running without sudo it's show error like this PHP Fatal error: rados_pool_list(): This function can't be called when not connected

Do i need to change the config, and how? Thank you

Paginating rados_objects_list

Hi,

Are there any plans to add support for limit and offset operators to the rados_objects_list function, so that it matches the lower level API methods?

For example it would be handy to ahve something like:

// Get the first 100 objects
rados_objects_list($io, 0, 100);

This would be helpful because you may not want to return all of the objects at once (e.g. for pagination).

Thanks

undefined symbol: rados_clone_range on CentOS 7

Hi I am trying to build phprados on CentOS 7 to be used with PHP-7.2. as provided by WebTatic: https://webtatic.com/packages/php72/

I have installed librados:

$ rpm -qa | grep rados
librados-devel-12.2.5-0.el7.x86_64
librados2-12.2.5-0.el7.x86_64

And the phprados does compile and install successfully. However upon import into PHP it fails with:

PHP Warning:  PHP Startup: Unable to load dynamic library 'rados.so' (tried:
 /usr/lib64/php/modules/rados.so (/usr/lib64/php/modules/rados.so: undefined symbol: 
rados_clone_range), /usr/lib64/php/modules/rados.so.so (/usr/lib64/php/modules/rados.so.so: cannot 
open shared object file: No such file or directory)) in Unknown on line 0

I checked and indeed:

$ ldd -r /usr/lib64/php/modules/rados.so 
	linux-vdso.so.1 =>  (0x00007ffda4e6d000)
	libcrypto.so.10 => /lib64/libcrypto.so.10 (0x00007f17dcd14000)
	librados.so.2 => /lib64/librados.so.2 (0x00007f17dc9af000)
	libc.so.6 => /lib64/libc.so.6 (0x00007f17dc5ec000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00007f17dc3e8000)
	libz.so.1 => /lib64/libz.so.1 (0x00007f17dc1d2000)
	libceph-common.so.0 => /usr/lib64/ceph/libceph-common.so.0 (0x00007f17d34f2000)
	libblkid.so.1 => /lib64/libblkid.so.1 (0x00007f17d32b3000)
	libssl3.so => /lib64/libssl3.so (0x00007f17d3067000)
	libsmime3.so => /lib64/libsmime3.so (0x00007f17d2e40000)
	libnss3.so => /lib64/libnss3.so (0x00007f17d2b16000)
	libnssutil3.so => /lib64/libnssutil3.so (0x00007f17d28e9000)
	libplds4.so => /lib64/libplds4.so (0x00007f17d26e5000)
	libplc4.so => /lib64/libplc4.so (0x00007f17d24e0000)
	libnspr4.so => /lib64/libnspr4.so (0x00007f17d22a2000)
	librt.so.1 => /lib64/librt.so.1 (0x00007f17d209a000)
	libresolv.so.2 => /lib64/libresolv.so.2 (0x00007f17d1e80000)
	libibverbs.so.1 => /lib64/libibverbs.so.1 (0x00007f17d1c6b000)
	libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f17d1a4f000)
	libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f17d1747000)
	libm.so.6 => /lib64/libm.so.6 (0x00007f17d1445000)
	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f17d122f000)
	/lib64/ld-linux-x86-64.so.2 (0x00007f17dd381000)
	libuuid.so.1 => /lib64/libuuid.so.1 (0x00007f17d102a000)
	libnl-route-3.so.200 => /lib64/libnl-route-3.so.200 (0x00007f17d0dbd000)
	libnl-3.so.200 => /lib64/libnl-3.so.200 (0x00007f17d0b9c000)
undefined symbol: zend_hash_get_current_data_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: php_error_docref0	(/usr/lib64/php/modules/rados.so)
undefined symbol: add_next_index_string	(/usr/lib64/php/modules/rados.so)
undefined symbol: _emalloc	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_hash_move_forward_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: php_info_print_table_row	(/usr/lib64/php/modules/rados.so)
undefined symbol: rados_clone_range	(/usr/lib64/php/modules/rados.so)
undefined symbol: add_next_index_long	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_fetch_resource	(/usr/lib64/php/modules/rados.so)
undefined symbol: add_assoc_string_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: Z_LVAL_PP	(/usr/lib64/php/modules/rados.so)
undefined symbol: _emalloc_16	(/usr/lib64/php/modules/rados.so)
undefined symbol: php_info_print_table_end	(/usr/lib64/php/modules/rados.so)
undefined symbol: php_info_print_table_start	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_hash_internal_pointer_reset_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: Z_TYPE_PP	(/usr/lib64/php/modules/rados.so)
undefined symbol: _estrndup	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_parse_parameters	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_register_resource	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_register_list_destructors_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: _efree	(/usr/lib64/php/modules/rados.so)
undefined symbol: add_assoc_stringl_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: add_assoc_long_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: _array_init	(/usr/lib64/php/modules/rados.so)
undefined symbol: zend_hash_get_current_key_ex	(/usr/lib64/php/modules/rados.so)
undefined symbol: php_sprintf	(/usr/lib64/php/modules/rados.so)
undefined symbol: display_ini_entries	(/usr/lib64/php/modules/rados.so)

Beside the PHP-specific symbols, that can only be resolved from within PHP, it seems like like also rados_clone_range is an unresolved symbol.

cc: @JanoSicek

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.