Any way to change blob size -- do I need to?

I'm tinkering around with remote blob storage in my dev environment -- doing a lot of different options to see how it really works.  One thing I noticed is that when I dragged a file to a document library and it got stored under my filestream filename
in the file system (instead of the mdf file of the provider database) that files it created seemed to be about 61k.  So if I dragged a 5 MB PDF file, there would be about 85 of these small blob files.  That seemed to be a little small and inefficient
to me, so I thought I could do something to increase the file size of the blob files and reduce the number of them.  I tried to increase the filestreammaxsizeinlineblob parameter of the RBS.MSI installation from 61140 to 102400 (and I tried doing this
in a number of different ways that I don't want to count).  When I did that, nothing seemed to end up in the file system.  Then I started poking around in the database and saw the table mssqlrbs_filestream_data_1.rbs_filestream_data_1 and saw the
blob_size column and nothing was larger than 65641.  So it seems that no data is being stored in the file system when I mandate a filestreammaxsizeinlineblob parameter of 102400 and that makes sense now looking at the aforementioned table because everything
was formed at a much lower size then the threshold I instituted.  My two questions are this:  1) is there any way to increase the blob_size so it's larger and there are less files on the file system or is that something hardcoded into sharepoint,
and 2) is the 61 - 64k size just fine and what appear to be lots of files to me is really nothing for the server to handle?  Frankly, the performance I got was quite good retreiving documents from BLOBs in my test environment, but was wondering what would
happen when it got actual use in production and tons of these files are floating around on the file system.
*This is a different issue than setting the minimumblobstoragesize in powershell -- I know how to do that*

1) Yes you can.
2) It's fine, don't bother changing it.
The thing you're seeing at work is called Shredded storage. It effectively allows SharePoint and SQL to only store updates to large files. Part of this involves shredding files to smaller chunks so it can identify which bits have changed. Because you're
externalising BLOBs you see these shredded files on the disk.
RBS is no longer anywhere near as useful in 2013 as it used to be and for the majority of cases i'd advise against using it. It might actually be causing worse performance as you take a small but measurable hit whenever you use an externalised BLOB, which
is fine for large slow files but very counter productive for small bits of data that are best kept in the database.
Thanks for the quick response, Alex!  If you have time, could you please briefly reply as to why RBS isn't as useful in 2013 (my setup is SP2013 SP1 w/ SQL2012 SP1), and what would be the threshold where it *would* be useful (i.e. number of files in document
storage DB, total document storage size, etc.)

Similar Messages

  • Any way to change the size of stack icons?

    Howdy,
    The icons shown in the stack are way too large for my taste. Is there a way to change their size? Also, can one change the font size in the stack display.
    Under 10.4 I used to have a folder full of aliases on the dock. Right clicking on the folder gave me a nice, neat, scrollable list of items. I wish I could force stacks to do that!
    Good Luck,
    Herb Schulz

    Page inspector, Layout window.

  • Any way to change file size display to NOT use GB or MB notation?

    I'd like to see exact byte counts for file sizes from time to time in the windows listing files (without having to Get Info). I've searched for options to change how file sizes are displayed by finder but have come up completely empty. Any chance this choice has not been completely co-opted from me by Apple's omnipotent designers?

    Welcome to Discussions.
    I believe there are 3rd-party applications that do it, such as [WhatSize|http://www.id-design.com/software/whatsize] and perhaps also [Path Finder|http://www.cocoatech.com].
    /p

  • Any Way to Change the Size of Figures/Illustrations in ADE

    I am running ADE on a Toshiba Laptop running Windows 7.  The Figures and/or Illustrations within the book I am reading are all the same size -- small. It does not matter if the window is maxxed to the size of the screen, or if I increase the size of the font,  the figures are allways the same size. They are too small and I would like to increase them to be readable.  Does anyone know how to do this?

    Can you manually drag back and forth with the handles on the timeline? Appreciate it.

  • Is there any way to change the document size from scene to scene?

    I'm building a portfolio site, but I need the document size to be different from each scene.  I'd rather not create a separate swf/html file for each page since that would disrupt the transition between scenes (not to mention all the wok I went through to get the dropdown menus working).
    For instance, the "home" scene is structured for 1200x670 px, but the portfolio scene labeled "published" needs to be at 1200x1500px.
    Is there any way to change the document size from scene to scene?  OR; If, for instance, I made the universal document size 1200x1500 for the entire flash file, is there a script that would restrict the "home" scene to only show the first 670 pixels?

    not in flash alone.
    you may be able to do what you want using javascript in your html document and using the externalinterface class to communicate between your actionscript the embedding html javascript.

  • Is there any way to change the default font for outgoing text-messages, in "Messages"? (OSX 10.10)

    Is there any way to change the default font for outgoing text-messages, in "Messages"?
    I can change it for one conversation, but then it resets to the default, tiny font.
    The preferences menu only lets me change the conversation font.
    (OSX 10.10)

    Hi,
    As you may remember there used to be a Messages pane to the Preferences where the Font and colour of the Balloons or background and the Font text colour could be changed.
    And there was a Format Menu for character, word and Sentence changes in the current IM or iMessage.
    Those have gone in Yosemite's version of Messages (Despite it retaining the designation of Messages 8 the same as Mavericks' version).
    All that can be done now is set the size of the font and this has been moved to the General Section of the Preferences.
    The Yosemite version has also been fixed to using the Balloons style of send and receiving any type of messages as well.
    Changing the Font would involved editing the Balloon.transcript file.
    10:34 pm      Saturday; December 13, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • GUYS!! Is there any way to write BLOB's 4K using Oracle thin driver

    I've been trying for 3 days to do that but nothing worked ...
    Not
    setBinaryStream(x, new ByteArrayInputStream(anArrayWith10KBytes), anArrayWith10KBytes);
    nor setBytes(x, myArray), or setObject(x, myArray).
    Is there any way to store Blobs to Oracle 8.1.6 using the thin driver ????????????
    Please help ... cause I really need it !!!
    Best regards,
    Stefig

    Hi Stefig
    Following code help you to store the files >4k in BLOB column in Oracle database
    test is a table in which TEST is BLOB column
    String url = "jdbc:oracle:thin:@.....";
    String user = "user name";
    String password = "password";
    Connection conn = null;
    PreparedStatement aQuery = null;
    ResultSet rs = null;
    try
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn = DriverManager.getConnection(url,user,password);
    conn.setAutoCommit(false);
    Statement stmt = conn.createStatement();
    stmt.execute("insert into test values (EMPTY_BLOB())");
    rs = stmt.executeQuery("select TEST from test");
    rs.next();
    BLOB blob =((OracleResultSet)rs).getBLOB(1);
    File f = new File(filename);
    FileInputStream io = new FileInputStream(f);
    OutputStream os = blob.getBinaryOutputStream();
    int size = io.available();
    byte[] buffer = new byte[1024];
    int length=0;
    while((length=io.read(buffer)) != -1)
    os.write(buffer,0,length);
    io.close();
    os.close();
    stmt.execute("commit");
    catch()
    Good Luck
    From
    Sachin

  • HT5293 any way to enlarge font size on new 2013 iMac 27 inch?

    any way to increase font size on nnew iMac 27 inch?

    Hi,
    In the Finder > View Menu > View Option > change the Text size.
    This changes the size of text under the icons on the Desktop.
    If you open any Finder window after this you can create a Default size for all windows from the same panel.
    8:19 PM      Thursday; October 17, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Any way to change the order of the items in the Files Inspector? DW CS4

    Hi,
    I'm using Dreamweaver CS4 with my menus split virtically.
    Is there any way to change the order of the items in the Files Inspector?
    Specifially I'd like to have them in this order:
    | Local/Remote Files | Modified | Size | Type |
    The reason being that next to the 'Local Files' the 'Modified' column is most impotant for putting updated files/images, and in split vertical mode I have to scroll right to see the 'Modified' column.
    Is this a feature request?
    Rich

    Is there any way to change the order of the items in the Files Inspector?
    Yes, but it must be done on a site-by-site basis.
    In the Site Definition dialog box, select File View Columns. You can control the position and display of columns there. The only one that can't be changed is Name.

  • Any way to have file size included in the first search in finder?

    Is it possible to somehow show file sizes when doing a search in finder?
    On Panther, it was very helpful to have the file sizes listed. This immediately revealed whether the photoshop files I was looking for were full size or reduced.
    But when I run a search in Snow Leopard it only shows name, kind and last opened. Otherwise I have to also add a second search to add in file size.
    Any way to have file size included in the first search?
    Thanks!

    Well, I wish I could take credit for knowing it was there before two days ago... but I dropped my laptop a couple months ago and it finally died for good on Friday, and I noticed this on the new laptop when setting up my Finder preferences.

  • I recently updated to 10.8.2 and now my notes from my iPhone no longer appear in my mail nor do my calendar appointments. Is there any way to change it so they will appear?

    I recently updated to 10.8.2 and now my notes from my iphone no longer appear in my mail nor do my calender appointments.  Is there any way to change it so they will appear?

    If it has the same (bad) behavior on two different systems then there is a very good chance that the  drive is toast.
    BTW you'll get better response to your questions if the question actually reflects the problem you are having. In this case it would have been better to say you couldn't access the drive rather then that it doesn't show on the desktop.
    regards

  • Hi at the moment my ipod is on manual sync mode. Is there any way of changing this to auto-sync without losing the music on my ipod or library? Possibly more importantly is there a way I can transfer the ratings from my ipod onto my i-tunes?

    Hi at the moment my ipod is on manual sync mode. Is there any way of changing this to auto-sync without losing the music on my ipod or library? Possibly more importantly is there a way I can transfer the ratings from my ipod onto my i-tunes?
    This is so I can delete music from my ipod knowing its rated on my i-tunes so I can then see later if I want to re-add it based on its rating
    Thanks

    Is there any way of changing this to auto-sync without losing the music on my ipod or library?
    Unfortunately there is not.
    Possibly more importantly is there a way I can transfer the ratings from my ipod onto my i-tunes?
    Not without the help of third party software such as this one:
    http://www.copytrans.net/copytrans.php
    B-rock

  • Is it possible to change the colour of the Pages' skin, since it is grey, is there any way to change it and make it less tedious?

    Is it possible to change the colour of the Pages' skin, since it is grey, is there any way to change it and make it less tedious?

    fruhulda wrote:
    If you see any grey"background" if is on the left and that is the comment field.
    Hi fruhulda
    It's not the comment field which is a restrictive description.
    In fact it's the window's background.
    Yvan KOENIG (VALLAURIS, France) lundi 26 septembre 2011 12:08:45
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Thunderbird puts a new message at the end of the thread. Is there any way of changing this preference to listing new message at top of the thread?

    Thunderbird puts a new message at the end of the thread.
    Is there any way of changing this preference so that new messages are displayed at the top of the thread.
    This is is more logical. You need to see new message in thread directly, rather than scanning to end of thread to see what is there.

    No it is not possible. The newest message is attached to the message it is in reply to.
    The conversations add-on might better suit your needs. see https://addons.mozilla.org/thunderbird/addon/gmail-conversation-view/?src=ss

  • HT4489 this is ridiculous! how do you keep the size of the picture for a contact that small? it is usually a piece of  a lager picture... any way to make the size of the pictures the 224 KB they want? I always thought the application cropped the picture t

    this is ridiculous! how do you keep the size of the picture for a contact in the address book that small? it is usually a piece of  a lager picture... any way to make the size of the pictures the 224 KB they want? I always thought the application cropped the picture to fit their requirements...
    Help
    Leo

    Gem
    Events are organised strictly on date and time, as read by iPhoto from the Exif data in the Photo. You cannot manually sort.
    Create Albums. You can do much more organising with Albums, use Photos from different events, place them as you will. Best of all, Albums use no disk space at all. They simply reference the file on the Hard Disk. So a pic can be 1, 10 or 100 Albums with no wasted disk space whatever.
    Regards
    TD

Maybe you are looking for

  • Photoshop CS6 wont install keep getting error

    Exit Code: 6 Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF024, DW063 ... WARNING: DS012, DW016 ... -------------------------------------- Summary -------------------------------------- - 0 fatal error(s),

  • Error when upgrading to v7.1 of IM

    Installed patch 118787-11 to upgrade from IM 7.0 to IM 7.1. I configured IM without the httpbind service. I have it seperated on two different machines. The server on one machine and the multiplexer on the other. The multiplexer seems to be running f

  • Forms 10g FORMS_PATH help

    Hi, I have the following problem: O/S Windows XP Forms 10g formsweb.cfg has: envFile=default.env and default.env has: FORMS_PATH=C:\DevSuiteHome_1\forms; C:\DevSuiteHome_1\forms\project\fmb; C:\DevSuiteHome_1\forms\project\pll; Why, when I put a pll

  • Can't import, burn or play CD's after iTunes update

    I burned a lot of CD's recently with no trouble. I then updated to 8.0.2 and now when I put in a CD it just sits inside making clicking noises for a minute and then kicks out the disc. Won't accept the DVD backup disc either. Is this a software or ha

  • Can not transfer all songs on computer to iphone

    I am not able to sync up all the songs on my computer to my  Iphone.  Some tranfer, but not the majority.  Any thoughts on a solution would be appreciated.