How to deal with IO Exception: Not  Enough Space

I always get the error message like IO Exception: Not Enough Space, following is the information on my desk , is not suppose have this happy is that right ?
why ? and how to deal with ?? I use solars 10 with NetBean 6.9
# df -k
Filesystem kbytes used avail capacity Mounted on
rpool/ROOT/s10x_u8wos_08a
239468544 7338765 229954672 4% /
/devices 0 0 0 0% /devices
ctfs 0 0 0 0% /system/contract
proc 0 0 0 0% /proc
mnttab 0 0 0 0% /etc/mnttab
swap 610684 348 610336 1% /etc/svc/volatile
objfs 0 0 0 0% /system/object
sharefs 0 0 0 0% /etc/dfs/sharetab
/usr/lib/libc/libc_hwcap1.so.1
237293437 7338765 229954672 4% /lib/libc.so.1
fd 0 0 0 0% /dev/fd
swap 610484 148 610336 1% /tmp
swap 610360 24 610336 1% /var/run
rpool/export 239468544 23 229954672 1% /export
rpool/export/home 239468544 63960 229954672 1% /export/home
rpool 239468544 34 229954672 1% /rpool
#

Thank you for all the replies.
Just have time come to this forum:
think you are running out of swap space.Google surge this too,
at first I install solaria I give 512M out of totally 2G in memory,
then I run
# zfs create -V 512M rpool/additionalswap
# swap -a /dev/zvol/dsk/rpool/additionalswap
on meantime
swapfile dev swaplo blocks free
/dev/zvol/dsk/rpool/swap 181,3 8 1048568 1048568
# df -k
Filesystem kbytes used avail capacity Mounted on
rpool/ROOT/s10x_u8wos_08a
239468544 7280779 230012901 4% /
/devices 0 0 0 0% /devices
ctfs 0 0 0 0% /system/contract
proc 0 0 0 0% /proc
mnttab 0 0 0 0% /etc/mnttab
swap 392944 352 392592 1% /etc/svc/volatile
objfs 0 0 0 0% /system/object
sharefs 0 0 0 0% /etc/dfs/sharetab
/usr/lib/libc/libc_hwcap1.so.1
237293680 7280779 230012901 4% /lib/libc.so.1
fd 0 0 0 0% /dev/fd
swap                  392760     168  392592     1%    /tmp
swap                  392616      24  392592     1%    /var/run
rpool/export 239468544 23 230012901 1% /export
rpool/export/home 239468544 63989 230012901 1% /export/home
rpool 239468544 34 230012901 1% /rpool
/vol/dev/dsk/c7t0d0/unnamed_rmdisk:c
15618080 1985728 13632352 13% /rmdisk/unnamed_rmdisk
Edited by: Hjava on Nov 25, 2010 8:40 PM
Edited by: Hjava on Dec 9, 2010 2:09 AM
this link is useful
http://docs.sun.com/app/docs/doc/817-5093/gizet?l=zh_TW&a=view

Similar Messages

  • How to deal with Flex Exceptions ??

    Hi ,
    I know how to handle an Exception when dealing with Flex with server side that is , when an Exception comes from the server side (java) i can easily handle that on the fault event with the help of ErrorMessage .
    But can anybody please let me know how to handle an Exception when it comes on to the ActionScript and show it to the User .
    For instance , i have seen a half example like this :
    try
    catch(error:EOFError)
    MyTextFiled.text = error.toString();
    Now please let me know how can i show this to the End User ??
    And i can only see Errors in ActionScript , is there anything like Exceptions on to Flex??
    Thanks in advance .

    you can use any one of following
    mx.controls.Alert.show(
    "Error:"+e.message.toString())mx.controls.Alert.show(
    "Error:"+e.toString());

  • How to deal with the "driver not installed" message?

    My issue, and it seems many others here have it too, is how to install a printer driver in the face of the "driver not installed" message.
    In my case, it's an HP4160 Rendevous printer. I've deleted the com.apple.print files in the Library, reinstalled the software, made sure that BDC package, or whatever it's called is installed, even downloaded and run the printer fix software from Fixamac.
    Nothing works.
    I have the feeling this isn't a printer or driver-specific issue, but is an OS problem. Does anyone have a suggestion?

    It appears the Deskjet 4160 will not work with an Airport. Connected via USB, the driver installs normally and the the printer appears to run just fine, although I haven't done much with it yet.
    It simply will not work on a wireless network through an Airport. Frustrating, but workable by bringing the laptop to the printer.

  • NIO: how to deal with this exception?

    I am doing some performance test. I tried to create 5000 SocketChannel and connected to the same server/port but got the following exception.
    java.net.SocketException: No buffer space available (maximum connections reached?): connect
    How can I solve this?
    Thank.

    Allowing writes from both cache & DB is possible with its own set of issues.
    The main issue to consider is conflicts from updates on same record via both cache and DB. If your caches are write-through the conflict decreases - but then cache writes become slower. If your caches are write-behind potentially the older cache update will overwrite the latest DB update. Now you are back to Database 101 -- timestamps, versions, etc...
    If you use a DB trigger to initiate the resync request you might want to distinguish whether the update has come from the cache-store (in which case, you may choose to do nothing), or if the update was from the 'existing apps', etc...
    If you choose to inject the resync logic at the application code level - you have the usual sourcecode issues - can you modify the code, is all the DB code localized, what options do you have to link with Coherence functionality (DLL, external proc, webservice, etc), etc... Naturally though, if you have to make substantial changes to signal a resync....you might consider taking the extra step and change the code to write to the cache.

  • Not enough space exception

    hi
    i am trying to insert 150000 records into berkeley db xml 2.1.8 using .net api. but after inserting 19000 records it throws an exception not enough space exception.
    but when i increase cache size it throws database recover exception .
    plz help , how can i solve this problem
    Regards.............
    Shailendra Yadav

    thanks john
    i m able to insert 150000 records using txn.SynCommit() , but the performence is very low . now when i m retriving the same records again it is throwing the same Dbc::get: Not enough space, exception code = DATABASE_ERROR error
    plz suggest me how can i increase my performence and recover this error while retriving.
    my code is..........
    using Sleepycat.Db;
    using Sleepycat.DbXml;
    using System;
    using System.Data;
    using System.IO;
    namespace BDataBase
         public class SimpleAdd
              private static string theContainer = "simpleExampleData.dbxml";
              public static void Main(string[] args)
                   string [] asa = {"-h",@"d:\BDBData"};
                   args=asa;
                   string envdir = parseArguments(args);
                   try
                        // Open an environment and manager
                        using(Manager mgr = CreateManager(envdir))
                             // Open a transactional container
                             ContainerConfig containerconfig = new ContainerConfig();
                             containerconfig.Transactional = true;
                             Transaction txn1 = mgr.CreateTransaction();
                             mgr.CreateContainer(null,@"D:\BDBData\simpleExampleData.dbxml", containerconfig);
                             using(Container container = mgr.OpenContainer(null, theContainer, containerconfig))
                                  // Start a transaction
                                  using(Transaction txn = mgr.CreateTransaction())
                                       // Create an update context
                                       using(UpdateContext uc = mgr.CreateUpdateContext())
                                            try
                                                 string word = reader.GetString(0);
                                                 // Create string contents for documents
                                                 string document1 = "<word>शैलेन्द्र</word>";
                                                 string document2 = "<word>2308</word>";
                                                 // Put the document, asking DB XML to generate a name
                                                 DocumentConfig docconfig = new DocumentConfig();
                                                 docconfig.GenerateName = true;
                                                 container.PutDocument(txn, "", document1, uc, docconfig);
                                                 container.PutDocument(txn, "", document2, uc, docconfig);
                                            catch(Exception dataExp)
                                                 System.Console.WriteLine(""+dataExp);
                                            // Commit the writes. This causes the container write operations
                                            // to be saved to the container.
                                            txn.Commit();
                                  //Find all the Vendor documents in the database
                                  doQuery(mgr, "collection(\"" + theContainer + "\")/word");
                   catch(DbXmlException e)
                        System.Console.WriteLine("Error performing document add against " + theContainer);
                        System.Console.WriteLine(e.Message .ToString());
              private static void doQuery(Manager mgr, string query)
                   // Perform a single query against the referenced container.
                   System.Console.WriteLine("Exercising query: '" + query + "'.");
                   System.Console.WriteLine("Return to continue: ");
                   //System.Console.ReadLine();
                   // Perform the query
                   using(QueryContext context = mgr.CreateQueryContext())
                        Results results = mgr.Query(null, query, context, new DocumentConfig());
                        // Iterate over the results
                        while(results.MoveNext())
                             System.Console.WriteLine(results.Current);
                        System.Console.WriteLine(results.Size + " results returned for query '" + query + "'.");
              public static Manager CreateManager(string envdir)
                   EnvironmentConfig envconf = new EnvironmentConfig();
                   envconf.CacheSize = 50 * 1024 * 1024;
                   envconf.Create = true;
                   envconf.InitializeCache = true;
                   envconf.Transactional = true;
                   envconf.InitializeLocking = true;
                   envconf.InitializeLogging = true;
                   envconf.Recover = true;
                   ManagerConfig mgrconfig = new ManagerConfig();
                   mgrconfig.AdoptEnvironment = true;
                   Sleepycat.Db.Environment env = new Sleepycat.Db.Environment(envdir, envconf);
                   try
                        return new Manager(env, mgrconfig);
                   catch(System.Exception e)
                        env.Dispose();
                        throw e;
              private static void Usage()
                   System.Console.WriteLine("This program adds a few simple XML documents to a specified container.");
                   System.Console.WriteLine("You should run exampleLoadContainer before running this example.");
                   System.Console.WriteLine("You are only required to pass this command the path location of the database");
                   System.Console.WriteLine("environment that you specified when you loaded the examples data:");
                   System.Console.WriteLine();
                   System.Console.WriteLine("\t-h <dbenv directory>");
                   System.Console.WriteLine("For example:");
                   System.Console.WriteLine("\tsimpleAdd.exe -h examplesEnvironment");
                   System.Environment.Exit(-1);
              private static string parseArguments(string[] args)
                   string envdir = null;
                   for(int i = 0; i < args.Length; ++i)
                        string arg = args;
                        if((arg.StartsWith("-")
    #if WIN32
                    || arg.StartsWith("/")
    #endif
                         ) && arg.Length > 1)
                             switch(arg[1])
                                  case 'h':
                                       ++i;
                                       if(i >= args.Length)
                                            System.Console.WriteLine("Invalid option: " + arg);
                                            Usage();
                                       envdir = args[i];
                                       break;
                                  default:
                                       System.Console.WriteLine("Unknown option: " + arg);
                                       Usage();
                                       break;
                        else
                             System.Console.WriteLine("Too many arguments: " + arg);
                             Usage();
                   if(envdir == null)
                        System.Console.WriteLine("Environment directory not found.");
                        Usage();
                   return envdir;
    Shailendra.........

  • Java.io.IOException: Not enough space  - Weblogic 8.1 on Solaris 8

    Hi,
    We get "java.io.Exception: Not enough space" sometimes when trying to access
    JSPs hosted on Weblogic 8.1 on Solaris 8. It looks like a problem because of
    increased swap space usage. What should we do to get rid of this issue
    Compilation of '.......java' failed:_____
    (Failed to parse compiler output. See full output below). ____
    Full compiler error(s):
    java.io.IOException: Not enough space
    at java.lang.UNIXProcess.forkAndExec(Native Method)
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:52)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:566)
    at java.lang.Runtime.exec(Runtime.java:491)
    at java.lang.Runtime.exec(Runtime.java:457)
    at weblogic.utils.Executable.exec(Executable.java:227)
    at weblogic.utils.Executable.exec(Executable.java:156)
    at weblogic.utils.Executable.exec(Executable.java:142)
    at
    weblogic.utils.compiler.CompilerInvoker.execCompiler(CompilerInvoker.java:249)
    at
    weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:427)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:328)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:336)
    at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:321)
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:443)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:238)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:188)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:463)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6452)
    at
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3661)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2630)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    Thanks,
    Abhijeet Dev

    Hello,
    I had the same problem and I eradicated it by changing used % of /tmp dir from 97% to 81% by removing unwanted files in /tmp folder.
    Try it out......
    df -k
    Now u will see that ur swap space is not sufficient.Check the corresponding mounting directory.Remove unwanted files from this dir. Restart ur server.Your problem should be solved.Note: Restarting server is not needed but for safe side restart ur server.
    In mine case, my dir was /tmp.I removed all unwanted files and then the problem was solved.
    Thanks
    Chandra

  • Not enough space to compile JSP!

    Hi,
    I've installed WLS 7.0 on a Sun e250 (256MB RAM, 8GB HD). The server runs ok,
    console runs, web services run...
    But when I try to access the JSP of a given web app, the JSP can't compile. I
    get an IO.Exception: Not enough space.
    I've turned down the amount of memory being allocated to the JVM - initially it
    was ms32 mx200, now it's 32 and 64 respectively. This doesn't cure the problem
    however. Also, I've no other memory-hogging processes running.
    Surely my box is able enough to 7.0?
    Any ideas?

    Hi Roy.
    I found:
    If you receive the following error message received when compiling JSP files on
    a UNIX machine:
    failed: java.io.IOException: Not enough space
    try any or all of the following:
    Add more RAM if you have only 256M.
    Raise the file descriptor limit, for example:
    set rlim_fd_max = 4096
    set rlim_fd_cur = 1024
    Use the -native flag to use native threads when starting the JVM.
    from http://e-docs.bea.com/wls/docs61/notes/issues.html#1029041.
    Could you give a try?
    Thanks.
    Ji Zhang
    Developer Relations Engineer
    BEA WebLogic Support
    "Roy Martin" <[email protected]> wrote:
    >
    Hi,
    I've installed WLS 7.0 on a Sun e250 (256MB RAM, 8GB HD). The server
    runs ok,
    console runs, web services run...
    But when I try to access the JSP of a given web app, the JSP can't compile.
    I
    get an IO.Exception: Not enough space.
    I've turned down the amount of memory being allocated to the JVM - initially
    it
    was ms32 mx200, now it's 32 and 64 respectively. This doesn't cure the
    problem
    however. Also, I've no other memory-hogging processes running.
    Surely my box is able enough to 7.0?
    Any ideas?

  • I have a ipod touch and i got it for christmas with an iTunes card .the problem is that i downloaded videos and now it said that there is not enough space and i only downloaded 8 and now 5 don't download how do i erase them.can  get my money back

    i have a ipod touch and i got it for christmas with an iTunes card .the problem is that i downloaded videos and now it said that there is not enough space and i only downloaded 8 and now 5 don't download how do i erase them.can  get my money back

    Whatever you read about iTunes is wrong unless you're actually referring to feature movies, not videos. Videos, apps, music and iBooks you can re-download:
    http://support.apple.com/kb/ht2519
    Download to your computer and then sync to your iPod touch whatever will fit.
    And no, I can't say with certainty that they won't give you a refund, but it's unlikely. The most probable outcome, if you do indeed mean movies, not TV shows or other videos, is that they would set up an additional download. For other content they'll probably just direct you to the same instructions on re-downloading I just posted.

  • How to deal with payment of vendor to us (credit notes I guess)

    Normally I use F07 for outgoing payments, it's linked to vendors, but how to deal with incoming payments of vendors?
    We got paid two invoices(credit notes I guess) and I want to put them under the right vendor, but how do I do it?
    I can't use F07 I think because I need to use positive amounts (for normal purchase invoices) and can't use negative amounts in this transaction. F08 is for ingoing payment but that session is linked to customers I thought..not for vendors?
    How to deal with this kind ot transactions? What transaction can I use the best for payments like this
    (we got paid an amount , no invoices yet, but I know the vendor).

    whith F-02 it is possible I noticed.

  • Pages 5.5 output PDF is not have pages number interlinkage ,why?How to deal with?

    pages 5.5 output PDF is not have pages number interlinkage ,why?How to deal with?

    pages 5.5 output PDF is not have pages number interlinkage ,why?How to deal with?

  • My iPad is frozen with the message not enough storage.  Options are close and settings but it will not respond to buttons and will not allow me to turn it completely off.  How do I get past that message?

    My iPad is frozen with the message not enough storage.  Options are close and settings but it will not respond to buttons and will not allow me to turn it completely off.  How do I get past that message?

    Delete some apps, files, photos, videos, movies, etc to free up some space.
    How much space is your Other using? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • How to deal with the rule that do not use "object" class to declear a class

    I run my flex project in sonar. And there is a rule "Do not use Object class ".
    I just want to know how to deal with this problem.
    I mean, when I try to write a base class, I don't know which kind of class will be transfered in by reference, which type I can declear instead of "object"?

    Check out this example:
    The moment I put in the code >> box1.addItem("hello"); << and run the application, the BusNameListener is fired. Hope this makes sense.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class JFrameExample {
    private JComboBox box1;
    public JFrameExample() {
    box1 = new JComboBox();
    box1 .setMinimumSize(new Dimension(300, 24));
    box1 .setPreferredSize(new Dimension(300, 24));
    box1.addActionListener(new BusNameListener());
    box1.addItem("hello");
    JFrame f = new JFrame("This is a test");
    f.setSize(400, 150);
    Container content = f.getContentPane();
    // content.setBackground(Color.white);
    content.setLayout(new FlowLayout());
    content.add(box1);
    f.setVisible(true);
    class BusNameListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    JComboBox cb = (JComboBox) e.getSource();
    String item = (String) cb.getSelectedItem();
    if (item != null) {
    JOptionPane.showInputDialog(null,
    "Specify...", "File Import",
    JOptionPane.OK_CANCEL_OPTION);
    }

  • When I attempt to connect my new MacBook Air to my home network I receive a dialogue that says " Could not join name of network .  A connection timeout has occurred.  Any ideas on how to deal with this?

    When I attempt to connect my new MacBook Air to my home network I receive a dialogue that says " Could not join <name of network>.  A connection timeout has occurred.  Any ideas on how to deal with this?

    Please review the following Apple Support article for assistance with troubleshooting wireless connections.
    You may also find this OSXDaily article helpful as well.

  • My iphone 5 open-close key does not work,how to deal with?, my iphone 5 open-close key does not work,how to deal with?, my iphone 5 open-close key does not work,how to deal with?

    I bought the iphone5 on your online store on Nov24. 2013, Last year, I came back China. more ten days before, my iphone 5 's open-close-key did not work. I contact Apple's China, but they told me that they could not help me repair the problem, how to deal with ?

    What is the "open-close" key?  Do you mean the power button or the home button?
    FYI, these are user to user support forums, you are not addressing Apple here.
    Warranty and support are ONLY valid in the country of origin.

  • How to deal with hindi lang

    I am storing text messages in a PropertyResourceBundle as follows
    txt_EmailAdd = {mel ADres
    txt_Password = pasvDR
    I made the above file in MSword using hindi fonts
    The folllowing text is supposed to be in hindi
    {mel ADres
    pasvDR
    but it does not show the text in hindi it still shows in English but when I open the above text file in MSword it shows the text in hindi
    Please tell me how to deal with this problem . I hope you people reply as eaarly as possible.
    I also have another prob, I am developing a website using jsp+servlet now I have made the above mentioned property file and stored it in c:\tomcat5.0\webapps\emailreadersevice\IndexMessagesBundle.properties
    but when I access it from my application's index.jsp file Tomcat gives me following exception
    java.lang.NullPointerException
         java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:714)
         java.util.ResourceBundle.getBundle(ResourceBundle.java:579)
         org.apache.jsp.index_jsp._jspService(index_jsp.java:55)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    My index.jsp file is stored in c:\tomcat5.0\webapps\emailreaderservice\index.jsp
    In my index.jsp file i have written the following statement to get the IndexMessagesBundle but tomcat gives me the above exception.
    ResourceBundle IndexMessages = ResourceBundle.getBundle("IndexMessagesBundle",currentLocale);  
    Please guide me abt how to go abt it. Also tell me whether I am doing the right thing or not. If no then please tell me the right steps to follow                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi one_dane
    I have made the property file using hindi fonts to type the following thing
    { m e l A D r e s
    p a s v D R
    No the above values are not place holders Infact in order to type EmailAddress and Password in hindi I had to type the above keys. so when I put system.out.println in my jsp page it does not display any hindi text but the above keys which i used to type in order to display hindi text in my txt file.
    But I think i am not going on the right track should i type the unicode values for hindi text which is of the form \udddd in my property file. I have the unicode chart for hindi fonts so I can look up the chart and type appropriate unicodes(\udddd) to display Email Address and Password in hindi. Or am i still not getting how to do it? If not then please tell me how did you create your hindi property file. Is the following that you typed in your property file or is it the output of converting your property file into unicode using native2ascii
    title=\u090f\u0926\u0938\u093e \u092a\u0917\u0932\u094d\u0917 \u0942\u093e\u0902\u0942JSP i18n issues
    Please reply as soon as possible and hanks a lot for your help.
    Eagerly waiting for a reply,
    Heti shah

Maybe you are looking for